type Props = { captionsButton: 'enabled' | 'disabled' | null; currentTime: number; duration: number; fullscreen: boolean; onCaptionsChange: (event: React.SyntheticEvent) => void; onFullscreenChange: () => void; onPause: (event: React.SyntheticEvent) => void; onPlay: (event: React.SyntheticEvent) => void; onPlayheadDown: (event: React.MouseEvent | React.TouchEvent) => void; onPlayheadUp: (event: React.MouseEvent | React.TouchEvent) => void; onVolumeChange: (event: React.SyntheticEvent) => void; playing: boolean; seek: (time: number) => void; volume: number; }; declare function VideoControls({ captionsButton, currentTime, duration, fullscreen, onCaptionsChange, onFullscreenChange, onPause, onPlay, onPlayheadDown, onPlayheadUp, onVolumeChange, playing, seek, volume, }: Props): import("react/jsx-runtime").JSX.Element; export default VideoControls;