import { IVnode } from "./viewEngin/component.model"; declare global { namespace JSX { type Element = IVnode; interface IntrinsicElements extends IntrinsicElementMapSvg, IntrinsicElementMapHtml, IntrinsicElementMapCustom { } type IntrinsicElementMapHtml = { [K in keyof HTMLElementTagNameMap]: { [k: string]: any; }; }; type IntrinsicElementMapSvg = { [K in keyof SVGElementTagNameMap]: { [k: string]: any; }; }; type IntrinsicElementMapCustom = { ['x-div']: any; ['remove-before-save']: any; }; } } export {};