/**
 * If you know the input is probably an IP, you can use this function to quickly determine the version of the IP
 */
declare function fastIpVersion(probablyIp: string): 4 | 6 | 0;

export { fastIpVersion };
