import { AppInstance } from "../../../models"; export interface IAppInstanceDeleteBlade { appInstance: AppInstance; handleClose: () => void; handleDeleteCompleted: () => void; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-app-instance-delete-blade": IAppInstanceDeleteBlade; } } }