/** * Extracts the domain from a URL. * Returns null for IP addresses, invalid URLs, or invalid hostnames. * For valid domains, returns the entire hostname (e.g., 'api.example.com' from 'https://api.example.com') */ export declare function getDomain(url: string): string | null;