export declare const IN_BROWSER: boolean; export declare const SDK_VERSION = "0.3.28"; export declare const DEFAULT_BASE_URL: string; export declare const INITILIZE_SESSION_PATH = "/startSession/"; export declare const INITILIZE_USER_PATH = "/setIdentifier/"; export declare const SEND_CUSTOM_METADATA = "/addMetadata/"; export declare const SEND_LOGS_PATH = "/logData/"; export declare const DEFAULT_NETWORK_BODY_SIZE = 256; export declare const DEFAULT_POLLING_INTERVAL = 15; export declare const MAX_SIZE_THRESHOLD = 512; export declare const DEFAULT_INACTIVITY_THROTTLE: number; export declare const DEFAULT_INACTIVITY_COOLING_PERIOD = 300; export declare const DEFAULT_VISIBILITY_THROTTLE = 1800; export declare const DEFAULT_SESSION_THROTTLE = 20; export declare const DEFAULT_RAGE_THROTTLE = 200; export declare const ONE_MINUTE: number; export declare const LIVE_POLL_FREQUENCY = 1000; export declare const NORMAL_POLL_FREQUENCY = 4000; export declare const USER_IDENTIFIER = "userIdentifier"; export declare const USER_PROPERTIES = "userProperties"; export declare const CUSTOM_METADATA = "customMetadata"; export declare const UE_SESSION_ID = "ue_session"; export declare const UE_LAST_UPLOAD = "ue_last_upload"; export declare const UE_SESSION_EXPIRE = "ue_session_expire"; export declare const UE_SESSION_ACTIVE = "ue_session_active"; export declare const RESTART_SESSION = "restart_session"; export declare const UE_TAB = "ue_tab"; export declare const EXCLUDED_NETWORK_LOG_DOMAINS: string[]; export declare const DEFAULT_SESSION_REPLAY_BLOCK_CLASS = "ue-block"; export declare const DEFAULT_SESSION_REPLAY_MASK_CLASS = "ue-mask"; export declare const CAPTURE_IMAGES_INLINE = false; export declare const CAPTURE_INLINE_STYLESHEET = true; export declare const MASK_ALL_INPUTS = false; export declare const MASK_INPUT_CLASS = "ue-input-mask"; export declare const DEFAULT_MASK_INPUT_OPTIONS: { password: boolean; email: boolean; tel: boolean; }; export declare const CONSOLE_MESSAGE_MAX_LENGTH = 500; export declare const CONSOLE_MESSAGE_START_LENGTH = 350; export declare const CONSOLE_MESSAGE_END_LENGTH = 150; export declare const truncateString: (value: string, startLength?: number, endLength?: number) => string; export declare const getStorageItem: (key: string) => any; export declare const setStorageItem: (key: string, value: string) => void; export declare const clearItem: (key: string, value: string) => void; export declare const getSessionStorageItem: (key: string) => any; export declare const setSessionStorageItem: (key: string, value: string) => void; export declare const clearSessionItem: (key: string, value: string) => void; export declare const getDurableStorageItem: (key: string) => any; export declare const setDurableStorageItem: (key: string, value: string) => void; export declare const clearDurableStorageItem: (key: string) => void; export declare const encodeBase64: (data: any) => string; export declare const decodeBase64: (data: any) => string; export declare const getNormalizedUrl: (url: string) => string; export declare const urlToString: (url: string | URL) => string; export declare const prefixSlash: (url: string) => string; export declare const convertToCompleteUrl: (url: string) => URL;