import type { SourceFile } from 'ts-morph'; /** Find JSX node by tag name */ export declare const findJsxNodeByName: (sourceFile: SourceFile, tagName: string) => import("ts-morph").JsxOpeningElement | import("ts-morph").JsxSelfClosingElement | undefined;