export interface SortState { sortBy: string; sortOrder: 'asc' | 'desc'; setSort: (field: string, direction: 'asc' | 'desc') => void; } /** * Returns current sort state and a setter from the MasterView store. * Components that need sort state should use this hook instead of * selecting searchParams directly. */ export declare function useSortState(): SortState; //# sourceMappingURL=useSortState.d.ts.map