import { Component, VNode } from './jsx-runtime.cjs'; export { AllCSSProperties, AllHTMLAttributes, AnchorHTMLAttributes, AnimationEventHandler, AnnotationMathMLAttributes, AnnotationXmlMathMLAttributes, AreaHTMLAttributes, AriaAttributes, AriaRole, AudioHTMLAttributes, BaseHTMLAttributes, BlockquoteHTMLAttributes, Booleanish, ButtonHTMLAttributes, CSSProperties, CanvasHTMLAttributes, ClassAttributes, ClassValue, ClipboardEventHandler, ColHTMLAttributes, ColgroupHTMLAttributes, CommandEvent, CommandEventHandler, CompositionEventHandler, DOMAttributes, DOMCSSProperties, DPubAriaRole, DataHTMLAttributes, DelHTMLAttributes, DetailsHTMLAttributes, DialogHTMLAttributes, DragEventHandler, EmbedHTMLAttributes, EventHandler, FieldsetHTMLAttributes, FocusEventHandler, FormHTMLAttributes, Fragment, GenericEventHandler, HTMLAttributeAnchorTarget, HTMLAttributeCrossOrigin, HTMLAttributeReferrerPolicy, HTMLAttributes, HTMLInputTypeAttribute, IframeHTMLAttributes, ImgHTMLAttributes, InputEventHandler, InputHTMLAttributes, InsHTMLAttributes, IntrinsicElements, IntrinsicMathMLElements, IntrinsicSVGElements, JSX, JSXInternal, JSXNode, KeyboardEventHandler, KeygenHTMLAttributes, LabelHTMLAttributes, LiHTMLAttributes, LinkHTMLAttributes, MActionMathMLAttributes, MEncloseMathMLAttributes, MErrorMathMLAttributes, MFencedMathMLAttributes, MFracMathMLAttributes, MNMathMLAttributes, MOMathMLAttributes, MOverMathMLAttributes, MPaddedMathMLAttributes, MPhantomMathMLAttributes, MPrescriptsMathMLAttributes, MRootMathMLAttributes, MRowMathMLAttributes, MSMathMLAttributes, MSpaceMathMLAttributes, MSqrtMathMLAttributes, MStyleMathMLAttributes, MSubMathMLAttributes, MSubsupMathMLAttributes, MSupMathMLAttributes, MTableMathMLAttributes, MTdMathMLAttributes, MTextMathMLAttributes, MTrMathMLAttributes, MUnderMathMLAttributes, MUnderoverMathMLAttributes, MapHTMLAttributes, MarqueeHTMLAttributes, MathMLAttributes, MathMathMLAttributes, MediaHTMLAttributes, MenuHTMLAttributes, MetaHTMLAttributes, MeterHTMLAttributes, MiMathMLAttributes, MmultiScriptsMathMLAttributes, MouseEventHandler, ObjectHTMLAttributes, OlHTMLAttributes, OptgroupHTMLAttributes, OptionHTMLAttributes, OutputHTMLAttributes, ParamHTMLAttributes, PictureInPictureEventHandler, PointerEventHandler, ProgressHTMLAttributes, QuoteHTMLAttributes, Ref, RefCallback, RefObject, SVGAttributes, ScriptHTMLAttributes, SelectHTMLAttributes, SemanticsMathMLAttributes, Signalish, SlotHTMLAttributes, SnapEvent, SnapEventHandler, SourceHTMLAttributes, StyleHTMLAttributes, SubmitEventHandler, TableHTMLAttributes, TargetedAnimationEvent, TargetedClipboardEvent, TargetedCommandEvent, TargetedCompositionEvent, TargetedDragEvent, TargetedEvent, TargetedFocusEvent, TargetedInputEvent, TargetedKeyboardEvent, TargetedMouseEvent, TargetedPictureInPictureEvent, TargetedPointerEvent, TargetedSnapEvent, TargetedSubmitEvent, TargetedToggleEvent, TargetedTouchEvent, TargetedTransitionEvent, TargetedUIEvent, TargetedWheelEvent, TdHTMLAttributes, TextareaHTMLAttributes, ThHTMLAttributes, TimeHTMLAttributes, ToggleEvent, ToggleEventHandler, TouchEventHandler, TrackHTMLAttributes, TransitionEventHandler, UIEventHandler, VideoHTMLAttributes, WAIAriaRole, WheelEventHandler, jsx, jsxs, raw } from './jsx-runtime.cjs'; import '@preact/signals-core'; /** * Copyright (c) 2026 hangtiancheng * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /** * JSX automatic DEV runtime for `@lark.js/mvc`. * * Bundlers import `jsxDEV` from `/jsx-dev-runtime` in * development mode (e.g. Vite dev server, vitest). The extra debug arguments * (`isStaticChildren`, `source`, `self`) are accepted and ignored — the * produced VNode is identical to the production runtime's. */ /** * Create a JSX element (dev-runtime entry). * * @param type - Tag name, functional component, or `Fragment` * @param props - Props object (children under `props.children`) * @param key - The JSX `key` (third argument per automatic-runtime convention) * @param _isStaticChildren - Debug info (ignored) * @param _source - Debug source location (ignored) * @param _self - Debug `this` reference (ignored) */ declare function jsxDEV(type: string | Component | symbol, props: Record | null | undefined, key?: unknown, _isStaticChildren?: boolean, _source?: unknown, _self?: unknown): VNode; export { Component, VNode, jsxDEV };