import type { DomainConfig, ResolvedSiteProfile, SiteProfile } from "../types/index.js"; export declare const SITE_PROFILES: Record; export declare const DOMAIN_CONFIG: Record; /** * Resolves a URL to its DOMAIN_CONFIG entry by trying the full hostname first for subdomain-specific overrides, then falling back to the concise domain (last two * hostname parts). This allows entries like "tv.youtube.com" to override the base "youtube.com" entry when the URL matches the more-specific subdomain. * @param url - The URL to resolve a domain configuration for. * @returns The matching DomainConfig entry, or undefined if no match is found. */ export declare function getDomainConfig(url: string): DomainConfig | undefined; export declare const DEFAULT_SITE_PROFILE: ResolvedSiteProfile;