export interface IResizingIFrame {
    js?: string;
    html?: string;
    css?: string;
    iframeHeight?: string;
    iframeCustomStyle?: string | {};
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-iframe": IResizingIFrame;
        }
    }
}
