export declare const STICKY_STORAGE_KEY: { VISITOR_PROFILE: string; VARIATION_MAP: string; }; export declare class StickyProcesor { visitorId: string; namespace: string; cookies: Record; transformers: Record; constructor(visitorId: string, namespace: string, cookies: Record | undefined); getKey(keyName: string): string; getStringValue(cookieName: string): string; getValue(storage_key: string): any; createCookieString(storage_key: string, value: any, cookieOptions: Record): string; }