import React from 'react'; import { IVideoPlayerProps } from './VideoPlayer.types'; export declare class VideoPlayer extends React.PureComponent { static defaultProps: { controls: boolean; autoPlay: boolean; }; onVideoClick: (evt: React.MouseEvent) => void; render(): JSX.Element; } export default VideoPlayer;