/** * Converts a string to a URL object, adding https protocol if missing * * @param url - The URL string to convert * @returns A URL object with guaranteed protocol */ export declare function stringToURL(url: string): URL; /** * Extracts the domain from a URL, removing 'www.' prefix * * @param url - The URL to extract the domain from * @returns The clean domain name without 'www.' prefix */ export declare function getDomainFromUrl(url: string): string; //# sourceMappingURL=url.d.ts.map