import { SortConfig, SortDirection } from '../../../shared/types/table'; export declare const useTableSort: (initialSort?: SortConfig) => { sortConfig: SortConfig | undefined; handleSort: (columnId: string) => void; clearSort: () => void; setSort: (columnId: string, direction: SortDirection) => void; }; //# sourceMappingURL=useTableSort.d.ts.map