import { type StoredFilter } from '../../state/recent-pinned-store.js'; /** * Allows access to the namespaced pinned filters store. */ export declare function usePinnedFilters(name?: string | null): StoredFilter[]; /** * Allows access to the namespaced recent filters store setter. * @internal */ export declare function usePinnedFilterMutation(name?: string | null): { pinFilter: import("@tanstack/react-query").UseMutateFunction; unpinFilter: import("@tanstack/react-query").UseMutateFunction; };