//#region src/utils/ips.d.ts type Ipv4Address = `${number}.${number}.${number}.${number}`; type Ipv6Address = string; declare function isIpAddress(ip: string): boolean; declare function assertIpAddress(ip: string): asserts ip is Ipv4Address | Ipv6Address; //#endregion export { Ipv4Address, Ipv6Address, assertIpAddress, isIpAddress }; //# sourceMappingURL=ips.d.ts.map