/**
 * YouTube Platform Integration
 * Handles YouTube IFrame API loading and player management
 */
import type { YouTubePlayer, YouTubeSetupOptions } from "../types";
/**
 * Loads the YouTube IFrame API
 */
export declare function loadYouTubeAPI(): Promise<boolean>;
/**
 * Sets up YouTube player
 */
export declare function setupYouTubePlayback(container: HTMLElement, videoId: string, options?: YouTubeSetupOptions): YouTubePlayer | null;
