import { KeyValuePair } from "../types.js"; export declare const get: () => Promise; export declare const set: (key: string, value: string) => Promise; export declare const remove: (key: string) => Promise;