export type YoutubeURLParams = { videoId?: string; start?: number; end?: number; loop?: boolean; autoplay?: boolean; subtitle?: boolean; subtitleLanguage?: string; privacyEnhancedMode?: boolean; }; export declare const parseYoutubeUrl: (src?: string) => YoutubeURLParams;