/** * Generates API info, contact, license, and terms sections */ import type { OpenAPIDocument } from './types'; /** * Generates the API title and version header */ export declare function generateTitle(spec: OpenAPIDocument): string; /** * Generates the API description */ export declare function generateDescription(spec: OpenAPIDocument): string; /** * Generates the contact information section */ export declare function generateContact(spec: OpenAPIDocument): string; /** * Generates the license section */ export declare function generateLicense(spec: OpenAPIDocument): string; /** * Generates the terms of service section */ export declare function generateTermsOfService(spec: OpenAPIDocument): string; /** * Generates the external documentation section */ export declare function generateExternalDocs(spec: OpenAPIDocument): string; //# sourceMappingURL=info.d.ts.map