import { TsxAllowUnknowProperties } from "../..";
import { AppInstance } from "../../../models";
export interface IAppInstanceEditingJourney {
    appInstance: AppInstance;
    content?: JSX.Element;
    onCanceled?: () => void;
    onSave: (appInstance: AppInstance) => Promise<string>;
    onCompleted?: (appInstance: AppInstance) => void;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-appinstance-editing-journey": TsxAllowUnknowProperties<IAppInstanceEditingJourney>;
        }
    }
}
