/// import { FilterValue, CategoryValue } from '../types'; interface HeaderProps { style: object; cellInfo: object; cellType: string; width?: number; columnName: string; activeSortDirection?: string; metadata?: string; originalData: any[]; filteredData: any[]; possibleValues?: CategoryValue[]; filter?: FilterValue; focusedValue?: number; showFilters: boolean; isFirstColumn: boolean; isSticky: boolean; isNewColumn: boolean; isEditable: boolean; onChange?: (value: any) => void; onDelete?: () => void; onAdd: (name: string) => void; onFilterChange: Function; onSort: Function; onSticky: Function; } export declare function Header(props: HeaderProps): JSX.Element; export {};