import type { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'; type SchemaObject = OpenAPIV3.SchemaObject | OpenAPIV3_1.SchemaObject; export interface InterfaceGeneratorOptions { method: string; path: string; operationId?: string; } export declare function generateInterface(schema: SchemaObject, options: InterfaceGeneratorOptions): string; export {}; //# sourceMappingURL=interface-generator.d.ts.map