import type { SpecialHandler } from "./types"; export interface YouTubeUrl { videoId: string; playlistId?: string; } /** * Parse YouTube URL into components */ export declare function parseYouTubeUrl(url: string): YouTubeUrl | null; /** * Handle YouTube URLs - fetch metadata and transcript */ export declare const handleYouTube: SpecialHandler;