import React from 'react'; export interface VideoPlayerProps { src: string; poster?: string; title?: string; autoPlay?: boolean; enableAutoFloat?: boolean; className?: string; } export declare function VideoPlayer({ src, poster, title, autoPlay, enableAutoFloat, className, }: VideoPlayerProps): React.JSX.Element;