import * as http from 'http'; import * as https from 'https'; import { ProxyRule } from '../types'; export declare function createProxyServer(rule: ProxyRule): { server: http.Server; proxy: any; }; export declare function startProxy(rule: ProxyRule): Promise<{ server: http.Server | https.Server; proxy: any; }>; //# sourceMappingURL=proxy.d.ts.map