import type { JSXElement } from 'estree-jsx';
import type { StringableASTNode } from '../types';
export declare const jsx: (type: string | ((...args: any[]) => StringableASTNode<JSXElement>), props: Record<string, unknown>, ...children: any[]) => StringableASTNode<JSXElement> | undefined;
