export type Sources = { src: string; media?: string; type?: 'video/ogg' | 'video/mp4' | 'video/webm'; tracks?: [ { src: string; kind: string; srcLang: string; label: string; } ]; }; export type VideoTypes = { className?: string; appendClassName?: string; autoPlay?: boolean; controls?: boolean; errorMessage?: string; height?: number | string; loop?: boolean; muted?: boolean; playsInline?: boolean; poster?: string; preload?: 'auto' | 'metadata' | 'none'; sources?: Sources[]; width?: number | string; }; export declare const Video: ({ className, appendClassName, autoPlay, controls, errorMessage, height, loop, muted, playsInline, poster, preload, sources, width, }: VideoTypes) => JSX.Element;