import { CreateWarehouseCredentials } from '@lightdash/common'; export type SshTunnelOptions = { staticIp: string | null; probeForward: boolean; }; export declare class SshTunnel { readonly originalCredentials: T; overrideCredentials: T; localPort: number | undefined; private sshConnection; private readonly options; constructor(credentials: T, options?: SshTunnelOptions); connect: () => Promise; disconnect: () => Promise; } //# sourceMappingURL=sshTunnel.d.ts.map