import { GridStateColDef } from '../../models/colDef/index'; import { GridOptions } from '../../models/gridOptions'; import { GridSortDirection } from '../../models/gridSortModel'; interface GridColumnHeaderItemProps { colIndex: number; column: GridStateColDef; columnMenuOpen: boolean; headerHeight: number; isDragging: boolean; isResizing: boolean; sortDirection: GridSortDirection; sortIndex?: number; options: GridOptions; filterItemsCounter?: number; hasFocus?: boolean; tabIndex: 0 | -1; } export declare function GridColumnHeaderItem(props: GridColumnHeaderItemProps): JSX.Element; export {};