import { NodePath } from '@babel/traverse'; import * as t from '@babel/types'; /** * Given an identifier node, determine if it is a React Jsx function * jsxDEV, jsx, jsxs, ... * * TODO: handle default imports and namespace imports */ export declare function isReactJsxFunction(path: NodePath): boolean; //# sourceMappingURL=isReactJsxFunction.d.ts.map