export declare class BaseStorage {
    private storage;
    constructor(storage: Storage);
    get<T>(key: string, defaultValue: T): T;
    set<T>(key: string, value: T | string): void;
    remove(key: string): void;
    removeItems(keys: string[]): void;
    clear(): void;
}
