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; onHeaderRow: GetComponentProps[]>; index: number; } declare const HeaderRow: { (props: RowProps): React.JSX.Element; displayName: string; }; export default HeaderRow;