import { Node, NodePath } from '@babel/traverse'; import { JSXAttribute, JSXElement } from '@babel/types'; export declare function getJSXElementName(node: NodePath | Node): any; export declare function getJSXAttribute(path: NodePath, name: string): NodePath; export declare function getDataValueForAttribute(path: NodePath, name: string): any; export declare function getRefValueForAttribute(path: NodePath, name: string): any; export declare function evaluateJSXAttribute(path: NodePath, name: string): any;