import { Command } from 'commander'; export declare function makeProxyTunnelCommand(): Command; export interface ProxyTunnelOptions { serviceUrl: string; localPort: number; } export declare function proxyTunnel({ serviceUrl, localPort }: ProxyTunnelOptions): void;