export declare class KV { private store; constructor(); get(key: string): Promise; set(key: string, value: T): Promise; keys(): Promise; transaction(key: string, setFunc: (value: T) => Promise): Promise; }