import type { z } from 'zod'; import { BasePathItemObjectSchema } from './base-path-item-object.js'; import { OperationObjectSchemaWithoutCallbacks } from './operation-object-without-callbacks.js'; type PathItemObjectSchemaWithoutCallbacks = z.infer & { get?: z.infer; put?: z.infer; post?: z.infer; delete?: z.infer; options?: z.infer; head?: z.infer; patch?: z.infer; trace?: z.infer; }; /** * Path Item Object (without callbacks) * * Describes the operations available on a single path. A Path Item MAY be empty, due to ACL constraints. The path * itself is still exposed to the documentation viewer but they will not know which operations and parameters are * available. * * @see https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#path-item-object */ export declare const PathItemObjectSchemaWithoutCallbacks: z.ZodType; export {}; //# sourceMappingURL=path-item-object-without-callbacks.d.ts.map