import type { IConfigCatCache } from "../ConfigCatCache.js"; interface ILocalStorage { set(items: Partial): Promise; get(keys: string): Promise; } export declare class ChromeLocalStorageConfigCache implements IConfigCatCache { private readonly storage; private static tryGetFactory; constructor(storage: ILocalStorage); set(key: string, value: string): Promise; get(key: string): Promise; } export declare function getChromeLocalStorage(): ILocalStorage | undefined; export declare function toUtf8Base64(str: string): string; export declare function fromUtf8Base64(str: string): string; export {};