export declare enum SortDirection { ASC = "ASC", DESC = "DESC" } export interface ISortInformation { columnName: string; direction: SortDirection; } export interface ISortApi { current: ISortInformation; changeSort: (columnName: string) => void; } export declare function useTableQuerySort(defaultSort: ISortInformation, options?: { persistedStateId?: string; }): ISortApi;