export type OpenApiDocumentDetails = { version: string; type: 'json' | 'yaml'; title: string | undefined; }; /** * Get the base Swagger/OpenAPI details from the given string */ export declare function getOpenApiDocumentDetails(input: string | null): OpenApiDocumentDetails | undefined; //# sourceMappingURL=getOpenApiDocumentDetails.d.ts.map