import * as t from '@babel/types'; /** * Return true if (and only if) the current node is a * `React.createElement()` function call. * * @param node * @returns if the node is `React.createElement()` */ export declare const isCreateElement: (node: t.Node) => node is t.CallExpression;