export declare const getGoogleMapsAddressLink: (p: { street: any; zip: any; city: any; country: { id: number; name: string; }; }) => string; export declare const paramsToString: (params: { [k: string]: any; }) => string; export declare const deserialize: (str: string) => { [k: string]: string; }; export declare const replaceParams: (uri: string, params: { [k: string]: any; }, curly?: boolean) => string; export declare const resolve: (hostIn: string, pathIn: string) => string | null; export declare const getQueryStringParams: (query: string) => { [k: string]: any; }; export declare const fixedEncodeURIComponent: (str: string) => string; export declare const getQueryParams: (s?: string | undefined) => Map;