import React from "react"; export interface VideoLanguageOption { lang: string; videoUrl: string; } interface VideoPlayerProps extends React.HTMLAttributes { videoUrl: string; posterImage?: string; title?: string; className?: string; autoPlay?: boolean; contentId?: string | number; contentSource?: string; onNext?: () => void; onPrev?: () => void; hasNext?: boolean; hasPrev?: boolean; languages?: VideoLanguageOption[]; defaultLang?: string; onLangChange?: (lang: string) => void; } export declare function VideoPlayer({ videoUrl, posterImage, title, className, autoPlay, contentId, contentSource, onNext, onPrev, hasNext, hasPrev, languages, defaultLang, onLangChange, ...props }: VideoPlayerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=VideoPlayer.d.ts.map