///
/**
* JSX Pragma
* TODO: this is minimal version
* @param element element type
* @param props element props
* @param children element children
*/
export declare function jsx(element: string, props?: any, ...children: any[]): import("react").ReactElement<{}, string | ((props: any, deprecatedLegacyContext?: any) => import("react").ReactElement | null) | (new (props: any, deprecatedLegacyContext?: any) => import("react").Component)>;