/** eslint-env browser */ export const FRAGMENT_TAG: "$FRAGMENT"; /** * @param {string} tagName * @param {{ children?: DocumentFragment|string } & Record} attrs * @return {HTMLElement|DocumentFragment} */ export function jsx(tagName: string, attrs?: { children?: DocumentFragment | string; } & Record): HTMLElement | DocumentFragment; /** * @param {string} tagName * @param {Record & { children: HTMLElement[], style:string|CSSStyleDeclaration }} attrs * @return {HTMLElement|DocumentFragment} */ export function jsxs(tagName: string, attrs: Record & { children: HTMLElement[]; style: string | CSSStyleDeclaration; }): HTMLElement | DocumentFragment; //# sourceMappingURL=jsx-runtime.d.ts.map