//#region index.d.ts /** Get the PTR (reverse DNS) name for a given IPv4 or IPv6 address. Throws if `ip` is not a valid IP address. */ declare function ptr(ip: string): string; //#endregion export { ptr as default };