import { TsxAllowUnknowProperties } from "../";
import { MediaPickerVideo } from "../../models";
export interface IMediaPickerVideo {
    /** The video to render*/
    video: MediaPickerVideo;
    videoStyle?: string | object | object[];
    /**
     * This is set when saved in html, i.e. the attribute. Should be json of MediaPickerVideo
     * */
    videodata?: string;
    dark?: boolean;
    containerClass?: string;
    thumbnailOnly?: boolean;
    showCaption?: boolean;
    inlineMediaNodeDisplayData?: string;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-media-picker-video": TsxAllowUnknowProperties<IMediaPickerVideo>;
        }
    }
}
