import type { ProxyConfig } from './proxy-types.js'; export interface ProxyServer { url: string; close(): Promise; } export declare function startProxyServer(config: ProxyConfig): Promise;