import { ControlProps } from "../util";
export interface EmbedVideoProps extends ControlProps {
    src: "youtube" | "azuremedia";
    id: string;
    autoplay?: boolean;
    allowFullScreen?: boolean;
}
export declare const EmbedVideo: (props: EmbedVideoProps) => JSX.Element;
