import type { z } from "zod"; export declare function createKmsCodec(schema: z.ZodType): { encode(value: T): string; decode(plaintext: string): T; };