import { z } from "zod"; export declare const AnyValueSchema: z.ZodUnion; export declare const KeyValueSchema: z.ZodObject<{ key: z.ZodString; value: z.ZodUnion; }, "strip", z.ZodTypeAny, { key: string; value?: any; }, { key: string; value?: any; }>; export declare const KeyValueListSchema: z.ZodObject<{ values: z.ZodArray; }, "strip", z.ZodTypeAny, { key: string; value?: any; }, { key: string; value?: any; }>, "many">; }, "strip", z.ZodTypeAny, { values: { key: string; value?: any; }[]; }, { values: { key: string; value?: any; }[]; }>; export declare const AnyValueInnerSchema: z.ZodUnion<[z.ZodObject<{ stringValue: z.ZodNullable; }, "strip", z.ZodTypeAny, { stringValue: string | null; }, { stringValue: string | null; }>, z.ZodObject<{ boolValue: z.ZodNullable; }, "strip", z.ZodTypeAny, { boolValue: boolean | null; }, { boolValue: boolean | null; }>, z.ZodObject<{ intValue: z.ZodNullable; }, "strip", z.ZodTypeAny, { intValue: number | null; }, { intValue: number | null; }>, z.ZodObject<{ doubleValue: z.ZodNullable; }, "strip", z.ZodTypeAny, { doubleValue: number | null; }, { doubleValue: number | null; }>, z.ZodObject<{ arrayValue: z.ZodObject<{ values: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { values: any[]; }, { values: any[]; }>; }, "strip", z.ZodTypeAny, { arrayValue: { values: any[]; }; }, { arrayValue: { values: any[]; }; }>, z.ZodObject<{ kvlistValue: z.ZodObject<{ values: z.ZodArray; }, "strip", z.ZodTypeAny, { key: string; value?: any; }, { key: string; value?: any; }>, "many">; }, "strip", z.ZodTypeAny, { values: { key: string; value?: any; }[]; }, { values: { key: string; value?: any; }[]; }>; }, "strip", z.ZodTypeAny, { kvlistValue: { values: { key: string; value?: any; }[]; }; }, { kvlistValue: { values: { key: string; value?: any; }[]; }; }>, z.ZodObject<{ bytesValue: z.ZodType; }, "strip", z.ZodTypeAny, { bytesValue: Uint8Array; }, { bytesValue: Uint8Array; }>]>; //# sourceMappingURL=any-value.d.ts.map