/** * Converts a punycode hostname to its unicode form. * e.g. "xn--mnchen-3ya.example.com" -> "münchen.example.com" * * Returns the original hostname if conversion fails or produces an empty result. */ export declare function hostnameToUnicode(hostname: string): string;