import type { SwaggerOptions } from '../interfaces'; import { SwaggerExplorer } from '../swaggerExplorer'; export declare function renderSwaggerUIDist(swaggerConfig: SwaggerOptions, swaggerExplorer: SwaggerExplorer): (pathname: string) => Promise<{ ext: string; content: any; }>; export declare function renderJSON(swaggerConfig: SwaggerOptions, swaggerExplorer: SwaggerExplorer): (pathname: string) => Promise<{ ext: string; content: Omit; }>; export declare function renderSwaggerUIRemote(swaggerConfig: SwaggerOptions, swaggerExplorer: SwaggerExplorer): (pathname: string) => Promise<{ ext: string; content: Omit; } | { ext: string; content: string; }>; //# sourceMappingURL=render.d.ts.map