import { Context, Next } from 'koa'; interface ProxyOptions { host: string; map?: (path: string) => string; jar?: boolean; } export declare function createProxy(options: ProxyOptions): (ctx: Context, _next: Next) => Promise; export {};