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