/** * Melina.js JSX-to-DOM Runtime * * JSX in client.tsx files creates REAL DOM elements, not virtual DOM. * * Usage: * const el =
Hello
; * document.body.appendChild(el); // Works directly! */ type Child = Node | string | number | boolean | null | undefined | Child[]; export declare function jsx(tag: string | ((props: any) => Node), props: Record | null, ...children: Child[]): Node; export declare const jsxs: typeof jsx; export declare const jsxDEV: typeof jsx; export declare const Fragment: ({ children }: { children: Child | Child[]; }) => DocumentFragment; declare const _default: { jsx: typeof jsx; jsxs: typeof jsx; jsxDEV: typeof jsx; Fragment: ({ children }: { children: Child | Child[]; }) => DocumentFragment; }; export default _default; //# sourceMappingURL=jsx-dom.d.ts.map