import React from 'react'; export interface VideoV3Track { src: string; lang: string; label?: string; default?: boolean; } export interface VideoV3Source { src: string; type?: string; } export interface EliceVideoV3Props { language?: 'en' | 'ko'; source: VideoV3Source[]; textTrack?: VideoV3Track[]; poster?: string; autoPlay?: boolean; loop?: boolean; muted?: boolean; preload?: 'none' | 'metadata' | 'auto'; playbackRates?: number[]; rememberPositionKey?: string; primaryColor?: string; customColor?: { background?: string; text?: string; mutedText?: string; controlBackground?: string; border?: string; error?: string; primary?: string; focus?: string; }; className?: string; style?: React.CSSProperties; } export declare function EliceVideoV3({ language, source, textTrack, poster, autoPlay, loop, muted, preload, playbackRates, rememberPositionKey, primaryColor, customColor, className, style, }: EliceVideoV3Props): import("react/jsx-runtime").JSX.Element;