import type { FragmentProps, JSXElement, JSXNode } from './types'; export declare const Fragment: unique symbol; export declare function jsx(type: string | symbol | ((props?: any) => JSXNode), props?: Record): JSXElement; export declare function createFragment(props?: FragmentProps): JSXElement; export declare const jsxs: typeof jsx; export declare const jsxDEV: typeof jsx;