import { type ReactElement } from '../core'; export { Fragment } from './element'; export declare function jsx(type: any, props: any, key?: any): ReactElement; export declare const jsxs: typeof jsx; export declare const jsxDEV: typeof jsx; export declare namespace JSX { type Element = ReactElement; type ElementType = any; interface IntrinsicElements { [elemName: string]: any; } interface ElementChildrenAttribute { children: {}; } interface ElementAttributesProperty { props: {}; } }