import { Storage as IStorage } from './types';
/**
 * @internal
 */
export declare class LocalStorage implements IStorage {
    private readonly storage;
    constructor();
    get(key: string): string | null;
    set(key: string, val: string): void;
    getOrSet(key: string, genFn: () => string): string;
}
