import { KvService } from "./kv_types.js";
/**
 * Creates a new KvService instance that can be used to access Deno's native implementation (only works in the Deno runtime!)
 *
 * Requires the --unstable flag to `deno run` and any applicable --allow-read/allow-write/allow-net flags
 */
export declare function makeNativeService(): KvService;
