/// declare type SortableTableHeaderProps = { onClick: (columnName: string) => void; sort: SortDirection; name: string; title: string; }; export declare const enum SortDirection { 'NONE' = 0, 'ASC' = 1, 'DESC' = 2 } export declare const SortableTableHeader: (props: SortableTableHeaderProps) => JSX.Element; export {}; //# sourceMappingURL=sortable-table-header.d.ts.map