import type { RouteRegistration } from '../http/types.js'; export interface OpenAPIInfo { title: string; version: string; description?: string; } export interface OpenAPIDocument { openapi: '3.0.3'; info: OpenAPIInfo; paths: Record>; } export declare function generateOpenAPI(info: OpenAPIInfo, routes: readonly RouteRegistration[]): OpenAPIDocument; //# sourceMappingURL=generate.d.ts.map