import React from 'react'; import { TableProps } from '../interfaces'; interface TableHeaderCellProps { className?: string; style?: React.CSSProperties; tabIndex: number; column: TableProps.ColumnDefinition; activeSortingColumn: TableProps.SortingColumn | undefined; sortingDescending: boolean | undefined; sortingDisabled: boolean | undefined; wrapLines: boolean | undefined; resizer: React.ReactNode; showFocusRing: boolean; onClick(detail: TableProps.SortingState): void; onFocus?: () => void; onBlur?: () => void; } export declare function TableHeaderCell({ className, style, tabIndex, column, activeSortingColumn, sortingDescending, sortingDisabled, wrapLines, resizer, showFocusRing, onClick, onFocus, onBlur, }: TableHeaderCellProps): JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map