/// <reference types="react" />
interface VideoProps {
    src: string;
    width: string;
    height: string;
    autoPlay?: boolean;
    muted?: boolean;
    thumbnail?: string;
    controls: boolean;
    loop?: boolean;
}
declare function Video({ src, autoPlay, muted, width, height, controls, loop, thumbnail, }: VideoProps): JSX.Element;
export default Video;
//# sourceMappingURL=index.d.ts.map