export declare const getCurrentLocation: () => Location; export declare const getCurrentHistory: () => History; export declare const writeLocation: (searchParams: URLSearchParams) => void; export declare const handleValueInSearchParams: (searchParams: URLSearchParams, key: string, value: string) => URLSearchParams; export declare const getStringFromPathQuery: (key: string) => string | null; export declare const getNumberFromPathQuery: (key: string) => number | null; export declare const saveValuesToPathQuery: (values: { key: string; value: string; }[]) => void;