import { b as VNode, d as VNodeType, e as ComponentRender, V as VNodeProps, k as VNodeChild } from './vnode-B_CmIoCi.js'; export { F as Fragment } from './vnode-B_CmIoCi.js'; type JSXChild = VNodeChild | number | boolean | null | undefined; type JSXChildren = JSXChild | JSXChild[]; type JSXProps = VNodeProps & { children?: JSXChildren; }; declare function jsx(type: VNodeType, props?: JSXProps | null, key?: string): VNode; declare function jsxs(type: VNodeType, props?: JSXProps | null, key?: string): VNode; declare namespace JSX { type Element = VNode; type ElementType = VNodeType | ((props: never) => VNode | ComponentRender); interface IntrinsicElements { [name: string]: VNodeProps & { children?: JSXChildren; }; } interface ElementChildrenAttribute { children: unknown; } } export { JSX, jsx, jsxs };