export declare const DEFAULT_SSH_DAEMON_PORT = 6767; export interface SshTransportTarget { host: string; sshPort?: number; daemonPort: number; } export declare function validatePort(value: string | number, label: string): number; export declare function validateSshHost(host: string): string; export declare function parseSshTransportUri(value: string): SshTransportTarget; export declare function buildSshTunnelArgs(target: SshTransportTarget): string[]; //# sourceMappingURL=ssh-transport.d.ts.map