import { type StoredFilter } from '../../state/recent-pinned-store.js'; /** * Allows access to the namespaced recent filters store. * @internal */ export declare function useRecentFilters(name?: string | null): StoredFilter[]; /** * Allows access to the namespaced recent filters store setter. * @internal */ export declare function useRecentFilterMutation(name?: string | null): (filterString: string) => Promise;