import { z } from 'zod'; /** * Encoding Object * * A single encoding definition applied to a single schema property. See Appendix B for a discussion of converting * values of various types to string representations. * * Properties are correlated with multipart parts using the name parameter of Content-Disposition: form-data, and with * application/x-www-form-urlencoded using the query string parameter names. In both cases, their order is * implementation-defined. * * @see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#encoding-object */ export declare const EncodingObjectSchema: z.ZodObject<{ contentType: z.ZodString; headers: z.ZodOptional; description: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ description: z.ZodOptional; required: z.ZodOptional; deprecated: z.ZodOptional; style: z.ZodOptional>; explode: z.ZodOptional; example: z.ZodOptional; schema: z.ZodOptional>>; examples: z.ZodOptional; description: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ summary: z.ZodOptional; description: z.ZodOptional; value: z.ZodOptional; externalValue: z.ZodOptional; }, z.core.$strip>]>>>; content: z.ZodOptional, unknown, z.core.$ZodTypeInternals, unknown>>>; example: z.ZodOptional; examples: z.ZodOptional; description: z.ZodOptional; value: z.ZodOptional; externalValue: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>>>; }, z.core.$strip>]>>>; }, z.core.$strip>; //# sourceMappingURL=encoding-object.d.ts.map