import { type SshTransportTarget } from "@getpaseo/protocol/ssh-transport"; export interface SshTunnel { endpoint: string; close(): void; failureDetail(): string | null; } export declare function resolveSshFailureDetail(failure: string | null, stderr: string): string | null; export declare function createSshTunnel(target: SshTransportTarget): Promise; //# sourceMappingURL=ssh-tunnel.d.ts.map