export default class SessionDB {
    private readonly storage;
    private dbKey;
    constructor(dataKey: string);
    get(key: string): string | null;
    getAll(): string[] | null;
    set(key: string, value: string): void;
    delete(key: string): void;
    deleteAll(): void;
    nukeDB(): void;
}
