import { windowTypeVariation } from '../templates/hooks/useWindowType'; export { getLocationSearch } from './getLocationSearch'; export declare const replacePathId: (path: string, id?: number | string | null) => string; export declare const removeDuplicateSlash: (path: string) => string; export declare const parseStringToNumber: (value: string) => number | null; export declare const getWindowType: () => windowTypeVariation; export declare const isAndroid: () => boolean; export declare const safeSessionStorage: { getItem: (key: string) => string | null; setItem: (key: string, value: string) => boolean; removeItem: (key: string) => boolean; parseJSON: (value: string | null) => T | undefined; };