import { NCStorage } from "./NCStorage";
export declare class MemoryStorage implements NCStorage {
    private memory;
    contains(key: string): Promise<boolean>;
    delete(key: string): Promise<boolean>;
    load(key: string): Promise<string | null>;
    save(key: string, value: string): Promise<boolean>;
}
