/// <reference types="react" />
import { Theme } from '../Theme';
declare function Video({ src, theme, handleClose, }: {
    src: string;
    theme: Theme | undefined;
    handleClose: () => void;
}): JSX.Element;
export default Video;
