import { TsxAllowUnknowProperties } from "../../.."; import { BackgroundSettings } from "../../../../models"; export interface IBackgroundSettingsComponent { settings: BackgroundSettings; forceDark?: boolean; allowOverflow?: boolean; hideChromeStyling?: boolean; hideBackgroundColor?: boolean; hideAcrylicSettings?: boolean; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-layout-background-settings": TsxAllowUnknowProperties; } } }