import { AppInstance } from "@omnia/fx-models";
import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
export interface IValidatorWrapper {
    appInstance: AppInstance;
    renderValidator: (h: any) => JSX.Element;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-app-provisioning-validator-wrapper": TsxAllowUnknowProperties<IValidatorWrapper>;
        }
    }
}
