/**
 * Converts betwee SSH-protocol address string and IP address strings.
 */
export declare class IPAddressConversions {
    /**
     * Converts from an SSH-protocol address string to an IP address string.
     */
    static fromSshAddress(address?: string): string;
    /**
     * Converts from an IP Address to an SSH-protocol address string.
     */
    static toSshAddress(ipAddress: string): string | null;
}
//# sourceMappingURL=ipAddressConversions.d.ts.map