import { z } from 'zod'; /** * Example Object * * An object grouping an internal or external example value with basic summary and description metadata. This object is * typically used in fields named examples (plural), and is a referenceable alternative to older example (singular) * fields that do not support referencing or metadata. * * Examples allow demonstration of the usage of properties, parameters and objects within OpenAPI. * * @see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#example-object */ export declare const ExampleObjectSchema: z.ZodObject<{ summary: z.ZodOptional; description: z.ZodOptional; value: z.ZodOptional; externalValue: z.ZodOptional; }, z.core.$strip>; //# sourceMappingURL=example-object.d.ts.map