/**
 * @namespace IPHelper
 * @description IP-address helper methods namespace
 */
export declare namespace IPHelper {
    /**
     * @function getIp
     * @description Get current machine IP-address
     * @memberOf IPHelper
     * @returns {string} Current machine IP-address
     */
    function getIp(): string;
    /**
     * @function getComputerName
     * @description Get current machine hostname
     * @memberOf IPHelper
     * @returns {string} Current machine hostname
     */
    function getComputerName(): any;
}
