import type { Kv } from "./types.js"; /** * Open a cross-runtime KV store. * * An explicit path requests durable storage and fails if no durable backend can * open it. Omit the path, or use `:memory:`, to permit a volatile memory store. */ export declare function openKv(path?: string): Promise; /** * Create a cross-runtime KV store. * * An explicit path requests durable storage and fails if no durable backend can * open it. Omit the path, or use `:memory:`, to permit a volatile memory store. */ export declare function createKVStore(options?: { path?: string; }): Promise; export declare function polyfillDenoKv(): void; //# sourceMappingURL=factory.d.ts.map