/** * Analyzes a link found in a webpage and processes it for crawling * * @param link - The link URL to analyze (can be relative or absolute) * @param sourceUrl - The URL of the page where the link was found * @returns The normalized absolute URL if it's valid and from the same domain, undefined otherwise */ export declare function analyzeLink(link: string, sourceUrl: string): string | undefined; //# sourceMappingURL=links.d.ts.map