import { z } from 'zod'; import { PathItemBase } from '../../1/1/path-item.js'; import { Operation } from './operation.js'; import { Parameter } from './parameter.js'; import { Reference } from './reference.js'; import { Server } from './server.js'; export type PathItem = Pick & { delete?: z.input; get?: z.input; head?: z.input; options?: z.input; parameters?: (Parameter | Reference)[]; patch?: z.input; post?: z.input; put?: z.input; servers?: Server[]; trace?: z.input; }; export declare const PathItem: z.Schema; //# sourceMappingURL=path-item.d.ts.map