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

//#region src/libs/kv/adapters/passthrough.d.ts
/**
 * Passthrough KV adapter implementation.
 *
 * This adapter is a no-op implementation of both KV adapter call shapes.
 * It does not perform any actual key-value operations and returns as if the operation was successful and that there is no cache.
 */
declare const passthroughKVAdapter: () => KVAdapterInstance;
//#endregion
export { passthroughKVAdapter as default };
//# sourceMappingURL=passthrough.d.mts.map