export type JSXFactory = string | ((attributes: any, ...nodes: JSXNode[]) => JSXNode); export default class JSXNode { type: string; attributes: any; children: JSXNode[]; static create(name: JSXFactory, attributes: any, ...nodes: JSXNode[]): JSXNode; name: string; private constructor(); } //# sourceMappingURL=JSXNode.d.ts.map