import { AppInstanceRollupBlockSettings, GuidValue } from "@omnia/fx-models";
import { TsxAllowUnknowProperties } from "../../..";
export interface IAppInstanceRollupSettings {
    componentId: GuidValue;
    appDefinitionId: GuidValue;
    settings: AppInstanceRollupBlockSettings;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-app-instance-rollup-settings": TsxAllowUnknowProperties<IAppInstanceRollupSettings>;
        }
    }
}
