import { TsxAllowUnknowProperties } from "../";
import { JourneyInstance, Blade } from "../../models";
export interface IJourney {
    onInstanceCreated?: (instance: JourneyInstance) => void;
    onInstanceClosed?: () => void;
    blades: Array<Blade>;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-journey": TsxAllowUnknowProperties<IJourney>;
        }
    }
}
