export default class KeyValueStorage { private keyPrefix; setGlobalKeyPrefix(prefix: string): void; set(key: string, value: string): this; get(key: string): string | null; delete(key: string): this; }