import type { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'; import type { OpenAPISpec } from './openapi-parser.js'; export interface EndpointInfo { method: string; path: string; operationId?: string; summary?: string; requestBodySchema?: OpenAPIV3.SchemaObject | OpenAPIV3_1.SchemaObject; responseSchema?: OpenAPIV3.SchemaObject | OpenAPIV3_1.SchemaObject; requiredFields: string[]; } export declare function extractEndpoints(spec: OpenAPISpec): EndpointInfo[]; export declare function formatEndpointLabel(endpoint: EndpointInfo): string; //# sourceMappingURL=endpoint-extractor.d.ts.map