export declare class KeyValueStorage {
    private storage;
    private prefix;
    constructor(storage: Storage, prefix: string);
    get<T = any>(key: string): T | undefined;
    set(key: string, value: any): void;
    remove(key: string): void;
}
