import { AppInstance } from "../../../models"; import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties"; export interface IAppImageInput { appInstance: AppInstance; onValueChanged?: () => void; } declare global { namespace JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-app-image-input": TsxAllowUnknowProperties; } } }