import { z } from 'zod'; import { PathItemBase } from '../1/path-item.js'; import { Operation } from './operation.js'; export type PathItem = PathItemBase & { delete?: z.input; get?: z.input; head?: z.input; options?: z.input; patch?: z.input; post?: z.input; put?: z.input; trace?: z.input; }; export declare const PathItem: z.Schema; //# sourceMappingURL=path-item.d.ts.map