declare type GetCookieFunction = () => Promise; export declare let getUserCookies: GetCookieFunction; export declare const getUserId: () => string; export declare function saveUserCookies(cookies: string[], userId: string): void; export declare function removeUserCookies(): void; export declare function setCookieFn(fn: GetCookieFunction): void; declare type LogInfoHeaders = { 'x-cli-token'?: any; 'x-cli-appid'?: string; Cookie?: any; }; export declare const getLogInfoHeaders: (appId: string) => Promise; export {};