/** * @func randomIp * @param {number} type - 0: ipv4, 1: ipv6 * @returns {string} - random ip address * @desc 生成一个随机的IP地址,可以是IPv4或者IPv6 */ export declare const randomIp: (type?: number) => string;