import { TsxAllowUnknowProperties } from "../../../..";
import { BlockTitleSettings } from "../../../../../models";
export interface IBlockTitleSettingsComponent {
    componentMode: boolean;
    hideicontab?: boolean;
    settingskey?: string;
    onSettingsChanged?: (settings: BlockTitleSettings) => void;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-layout-block-title-settings": TsxAllowUnknowProperties<IBlockTitleSettingsComponent>;
        }
    }
}
