import { Component, ComponentChild, ComponentDefinition, ComponentFunction, ComponentProps } from '../classes/Component.js'; declare type ComponentComponentFunction = ComponentFunction, ComponentChild>; /** * The JSX pragma with which you can write `` instead of `new Paragraph({})`. * * Also exposed as the `jsx` prop on the (static) class as well as instance of this library's top- * level API -- see also {@link Api}. */ export declare function jsx(component: ComponentComponentFunction | ComponentDefinition, props: ComponentProps, ...children: Array | Array>>): Promise | ReturnType>>>; export {};