import type { Rule, Scope } from 'eslint'; import { type JSXOpeningElement } from 'eslint-codemod-utils'; /** * Given a component name finds its JSX usage */ export declare const getJsxElementByName: (componentName: string, scope: Scope.Scope) => (JSXOpeningElement & Rule.NodeParentExtension) | undefined;