import { KVAdapterInstance } from "./types.mjs";
import { Config } from "../../types/config.mjs";

//#region src/libs/kv/get-adapter.d.ts
/**
 * Returns the ideal KV adapter based on config and the runtime environment
 */
declare const getKVAdapter: (config: Config) => Promise<KVAdapterInstance>;
//#endregion
export { getKVAdapter as default };
//# sourceMappingURL=get-adapter.d.mts.map