import { BazzaFiltersState } from '../../remix-hook-form/data-table-router-parsers'; /** * Custom hook for synchronizing filter state with URL parameters * * This hook provides a clean interface for working with filter state in data table components, * automatically syncing the state with URL search parameters. * * @returns A tuple containing the current filter state and a function to update it */ export declare function useFilterSync(): [ BazzaFiltersState, (newFilters: BazzaFiltersState | ((prev: BazzaFiltersState) => BazzaFiltersState)) => void ]; //# sourceMappingURL=use-filter-sync.d.ts.map