import { z } from 'zod'; /** * Info Object * * The object provides metadata about the API. The metadata MAY be used by the clients if needed, * and MAY be presented in editing or documentation generation tools for convenience. * * @see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#info-object */ export declare const InfoObjectSchema: z.ZodObject<{ title: z.ZodCatch; summary: z.ZodCatch>; description: z.ZodCatch>; termsOfService: z.ZodCatch>; contact: z.ZodCatch; url: z.ZodCatch>; email: z.ZodCatch>; }, z.core.$strip>>>; license: z.ZodCatch>>; identifier: z.ZodCatch>; url: z.ZodCatch>; }, z.core.$strip>>>; version: z.ZodCatch; }, z.core.$strip>; //# sourceMappingURL=info-object.d.ts.map