import { TsxAllowUnknowProperties } from "../../..";
export interface IBlockPlaceholderComponent {
    icon: string;
    title?: string;
    text?: string;
    description?: string;
    dark: boolean;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-layout-block-placeholder": TsxAllowUnknowProperties<IBlockPlaceholderComponent>;
        }
    }
}
