export * from "./element";
export * from "./html";
export * from "./common";
export * from './components';
import type { IntrinsicTags } from "./html";
import type { UIElement } from "./element";
declare global {
export namespace JSX {
/** JSX Element */
type Element = UIElement;
/** Important for type-checking JSX children properly */
interface ElementChildrenAttribute {
children: {};
}
/** Intrinsic HTML Elements */
interface IntrinsicElements extends IntrinsicTags {
}
}
}