/** * Returns true if the value is a valid hostname. * @specification https://tools.ietf.org/html/rfc1123 * @specification https://tools.ietf.org/html/rfc5891 * @specification https://tools.ietf.org/html/rfc5892 */ export declare function IsHostname(value: string): boolean;