import type { KvValue, KvKey } from '@redocly/config'; import type { DatabaseKvDbInsertSchema } from '../../../providers/database/databases/sqld-sqlite/schemas/kv-table.js'; export declare const KV_KEY_SEPARATOR = "\u0001"; export declare function createKvDbRecord({ key, value, ttlInSeconds, }: { key: KvKey; value: KvValue; ttlInSeconds?: number; }): DatabaseKvDbInsertSchema; export declare function encodeKvKey(kvKey: KvKey): string; //# sourceMappingURL=create-kv-db-record.d.ts.map