export declare type Record = { type: "json" | "text"; val: string; }; export declare function getAsync(container: string, key: string): Promise; export declare function setAsync(container: string, key: string, rec: Record): Promise; export declare function delAsync(container: string, key: string): Promise;