/** * URL Classifier * * Classifies URLs by type for confidence boosting. */ import type { UrlType } from '../../types'; /** * Classify a URL by type. */ export declare function classifyUrl(url: string): UrlType; /** * Check if a URL is activity-related (for heuristic matching). * Only includes high-signal URLs where the URL itself indicates an activity. * Social media URLs (TikTok, YouTube, Instagram, X, Facebook) are excluded - * they could be anything and should be handled by AI classification. */ export declare function isActivityUrl(url: string): boolean; /** * Check if a URL is social media (should be excluded from heuristic). */ export declare function isSocialUrl(url: string): boolean; /** * Extract Google Maps coordinates from URL if present. */ export declare function extractGoogleMapsCoords(url: string): { lat: number; lng: number; } | null; //# sourceMappingURL=url-classifier.d.ts.map