/** * Wrap the estree in `MDXContent`. * * @param {Readonly} options * Configuration. * @returns * Transform. */ export function recmaDocument(options: Readonly): (tree: Program, file: VFile) => undefined; export type CallExpression = import('estree-jsx').CallExpression; export type Directive = import('estree-jsx').Directive; export type ExportAllDeclaration = import('estree-jsx').ExportAllDeclaration; export type ExportDefaultDeclaration = import('estree-jsx').ExportDefaultDeclaration; export type ExportNamedDeclaration = import('estree-jsx').ExportNamedDeclaration; export type ExportSpecifier = import('estree-jsx').ExportSpecifier; export type Expression = import('estree-jsx').Expression; export type FunctionDeclaration = import('estree-jsx').FunctionDeclaration; export type Identifier = import('estree-jsx').Identifier; export type ImportDeclaration = import('estree-jsx').ImportDeclaration; export type ImportDefaultSpecifier = import('estree-jsx').ImportDefaultSpecifier; export type ImportExpression = import('estree-jsx').ImportExpression; export type ImportSpecifier = import('estree-jsx').ImportSpecifier; export type JSXElement = import('estree-jsx').JSXElement; export type JSXFragment = import('estree-jsx').JSXFragment; export type Literal = import('estree-jsx').Literal; export type ModuleDeclaration = import('estree-jsx').ModuleDeclaration; export type Node = import('estree-jsx').Node; export type Program = import('estree-jsx').Program; export type Property = import('estree-jsx').Property; export type SimpleLiteral = import('estree-jsx').SimpleLiteral; export type SpreadElement = import('estree-jsx').SpreadElement; export type Statement = import('estree-jsx').Statement; export type VariableDeclarator = import('estree-jsx').VariableDeclarator; export type VFile = import('vfile').VFile; export type ProcessorOptions = import('../core.js').ProcessorOptions; //# sourceMappingURL=recma-document.d.ts.map