import type { NodePath } from '@babel/traverse'; import type { Node, Identifier, JSXIdentifier } from '@babel/types'; type FindType = 'any' | 'binding' | 'declaration' | 'reference'; export declare function nonType(path: NodePath): boolean; export default function findIdentifiers(expressions: NodePath[], type?: FindType): NodePath[]; export {};