import { Storage } from './storage'; export declare class StorageNode implements Storage { private prefix; constructor(id: string); getValues(): Promise; get(key: string): Promise; set(key: string, value: any): Promise; private getMap; }