import { SortDirection, SortKey } from "./shared/types"; export declare const useSort: (value?: SortKey, readLastSortCondition?: boolean) => { sortKey: SortKey | undefined; direction: SortDirection; value: { key: SortKey | undefined; direction: SortDirection; }; onSort: (value: SortKey) => void; }; //# sourceMappingURL=useSort.d.ts.map