export type JsxContentNode = JSX.Element | string | number | boolean | null; export type JsxContentReturningFunction = (...args: any[]) => JsxContentNode; export type JsxContent = JsxContentNode | JsxContentNode[] | JsxContentReturningFunction; //# sourceMappingURL=JsxContent.d.ts.map