import { V as VNodeChildren, a as VNode, C as ComponentType, M as MaybeRefProps } from './global.js'; export { A as AnchorHTMLAttributes, b as AreaHTMLAttributes, c as AriaAttributes, B as BlockquoteHTMLAttributes, d as ButtonHTMLAttributes, e as ColHTMLAttributes, D as DOMAttributes, f as DataHTMLAttributes, g as DelHTMLAttributes, h as DetailsHTMLAttributes, i as DialogHTMLAttributes, E as EventHandler, F as FormEvent, j as FormHTMLAttributes, H as HTMLAttributes, k as HtmlHTMLAttributes, I as IframeHTMLAttributes, l as ImgHTMLAttributes, m as InputHTMLAttributes, n as InsHTMLAttributes, L as LabelHTMLAttributes, o as LazyVNode, p as LiHTMLAttributes, q as LinkHTMLAttributes, r as MapHTMLAttributes, s as MaybeRef, t as MaybeRefAttrs, u as MediaHTMLAttributes, v as MenuHTMLAttributes, w as MetaHTMLAttributes, x as MeterHTMLAttributes, O as ObjectHTMLAttributes, y as OlHTMLAttributes, z as OptgroupHTMLAttributes, G as OptionHTMLAttributes, J as OutputHTMLAttributes, P as ParamHTMLAttributes, K as ProgressHTMLAttributes, N as PropsOf, Q as QuoteHTMLAttributes, R as Ref, S as SVGAttributes, T as ScriptHTMLAttributes, U as SelectHTMLAttributes, W as SourceHTMLAttributes, X as StyleHTMLAttributes, Y as TableHTMLAttributes, Z as TextareaHTMLAttributes, _ as TimeHTMLAttributes, $ as TrackHTMLAttributes, a0 as VNodeArrayChildren, a1 as VNodeChild, a2 as VNodeChildLeaf, a3 as VNodeKey, a4 as VNodeTypes } from './global.js'; declare const REACT_ELEMENT_TYPE: unique symbol; declare const REACT_FRAGMENT_TYPE: unique symbol; declare function jsxImpl(type: K, config: JSX.IntrinsicElements[K] & { children?: VNodeChildren; }, maybeKey?: any): VNode; declare function jsxImpl

(type: ComponentType

, config: MaybeRefProps

& { children?: VNodeChildren; }, maybeKey?: any): VNode; declare function jsxImpl(type: symbol, config: { children?: VNodeChildren; }, maybeKey?: any): VNode; declare const jsx: typeof jsxImpl; declare const jsxs: typeof jsxImpl; declare const jsxDEV: typeof jsxImpl; /** 经典 createElement(type, props, ...children) */ declare function createElement(type: any, config: any, ...children: any[]): any; /** 校验是否为 VNode */ declare function isValidElement(obj: any): boolean; /** Fragment 标记 */ declare const Fragment: symbol; export { ComponentType, Fragment, MaybeRefProps, REACT_ELEMENT_TYPE, REACT_FRAGMENT_TYPE, VNode, VNodeChildren, createElement, isValidElement, jsx, jsxDEV, jsxs };