import { AppInstance } from "../../../models";
import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
export interface IAppInstanceRoutePathBlade {
    appInstance: AppInstance;
    handleClose: () => void;
    routePrefix: string;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-app-instance-route-path-blade": TsxAllowUnknowProperties<IAppInstanceRoutePathBlade>;
        }
    }
}
