import { TsxAllowUnknowProperties } from "../../..";
import { AppProvisioningStepContext } from "../../../../models";
export interface IAppInstanceInformationStep {
    context: AppProvisioningStepContext;
    registerOnGoToNext: (onGoToNext: () => Promise<boolean>) => void;
    registerOnGoToPrev: (onGoToPrev: () => Promise<boolean>) => void;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-app-instance-information-step": TsxAllowUnknowProperties<IAppInstanceInformationStep>;
        }
    }
}
