import { RemotePortConnector } from './remotePortConnector';
/**
 * Receives SSH channels forwarded from a remote port and forwards them on to a local port.
 */
export declare class RemotePortForwarder extends RemotePortConnector {
    private readonly pfs;
    /**
     * Forwarding target host. Typically the loopback address ("127.0.0.1" or "::1") but may also be
     * another hostname or IP address to be resolved locally.
     */
    readonly localHost: string;
    /**
     * Forwarding target port.
     */
    readonly localPort: number;
}
//# sourceMappingURL=remotePortForwarder.d.ts.map