import { Command } from 'commander'; interface ProxyStartOptions { target: string; port?: number; mode?: 'websocket' | 'auto'; quiet?: boolean; } interface ProxyStopOptions { target?: string; } interface ProxyListOptions { } export declare function createProxyCommand(): Command; declare function executeProxyStart(options: ProxyStartOptions): Promise; declare function executeProxyStop(options: ProxyStopOptions): Promise; declare function executeProxyList(options: ProxyListOptions): Promise; export { executeProxyStart, executeProxyStop, executeProxyList }; //# sourceMappingURL=proxy.d.ts.map