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