import * as React from 'react'; import type { CellType, ColumnType, CustomizeComponent, GetComponentProps, StickyOffsets } from '../interface'; export interface RowProps { cells: readonly CellType[]; stickyOffsets: StickyOffsets; flattenColumns: readonly ColumnType[]; rowComponent: CustomizeComponent; cellComponent: CustomizeComponent; tdCellComponent: CustomizeComponent; onHeaderRow: GetComponentProps[]>; index: number; } declare function HeaderRow({ cells, stickyOffsets, flattenColumns, rowComponent: RowComponent, cellComponent: CellComponent, tdCellComponent, onHeaderRow, index, }: RowProps): React.JSX.Element; declare namespace HeaderRow { var displayName: string; } export default HeaderRow;