import { StorageService, AppInterface } from "..";
export declare class StorageAdapterContext {
    private service;
    private storage;
    constructor(storage: Map<string, string>, service: StorageService, app: AppInterface);
    setLoading(value: boolean): void;
    set(key: string, value: string): void;
    delete(key: string): void;
    clear(): void;
}
