export declare const getOrCreateDeviceId: () => string; export declare const getOrCreateSessionId: (sessionTimeoutMs: number) => string; export declare const touchSession: () => void; export declare const getSessionId: () => string | null; export declare const getDeviceId: () => string | null; export declare const setAccountIdentity: (accountId: string, traits?: Record) => void; export declare const getAccountId: () => string | null; export declare const getAccountTraits: () => Record | null; export declare const clearAccountIdentity: () => void; export declare const clearSessionState: () => void; export declare const clearTrackerStorage: () => void;