import { default as React } from 'react';
export interface VideoPlayerProps {
    src: string;
    type?: string;
    width?: string;
    height?: string;
}
export declare const VideoPlayer: React.FC<VideoPlayerProps>;
export default VideoPlayer;
