import { LOCAL_STORAGE_KEYS } from "@/constants"; export declare const generateRandomId: () => string; export declare const getSDKReleaseVersion: () => string; export declare const getUrlQueryParams: (urlString: string) => URLSearchParams; export declare const setLocalStorageItem: (key: keyof typeof LOCAL_STORAGE_KEYS, value: any) => void; export declare const getLocalStorageItem: (key: keyof typeof LOCAL_STORAGE_KEYS) => any; export declare const getEventServerUrl: (env?: string) => "https://dev.persona3.tech" | "https://www.persona3.tech"; export declare const getDeviceFingerPrintId: () => string | undefined;