import get from 'lodash/get';
type PropertyPath = Parameters<typeof get>[1];
interface PersistentQueryConfigEntry {
    paths: PropertyPath[];
    scoped?: boolean;
}
export type PersistentQueryConfig = Record<string, PersistentQueryConfigEntry>;
export declare const usePersistentPartialQueryParams: (config: PersistentQueryConfig) => {
    isHydrated: boolean;
};
export {};
