import { KvKey, KvKeyPart } from "./kv_types.js";
export declare function packKey(kvKey: KvKey): Uint8Array;
export declare function packKeyPart(kvKeyPart: KvKeyPart): Uint8Array;
export declare function unpackKey(bytes: Uint8Array): KvKey;
