interface VideoV2Props { source: { src: string; type?: string; }[]; textTrack?: { src: string; lang: string; label?: string; default?: boolean; }[]; options?: { autoplay?: boolean; controls?: boolean; poster?: string; playbackRates?: number[]; }; } export declare function EliceVideoV2({ source, textTrack, options: _options, }: VideoV2Props): import("react/jsx-runtime").JSX.Element; export {};