import type { Importer } from '../parse';
import type { NodePath } from 'ast-types/lib/node-path';
/**
 * Returns true if the expression is a function call of the form
 * `React.foo(...)`.
 */
export default function isReactBuiltinCall(path: NodePath, name: string, importer: Importer): boolean;
