import * as Koa from 'koa'; export interface RedocOpts { title?: string; redocVersion?: string; specUrl?: string; } export declare function serveRedoc(opts?: RedocOpts): Koa; export declare function getRedocIndexHTML(opts?: RedocOpts): string;