import type { SourceFile } from 'ts-morph'; /** Find all JSX nodes (opening and self-closing elements), excluding lower-cased (HTML) elements */ export declare const findJsxNodes: (sourceFile: SourceFile) => (import("ts-morph").JsxOpeningElement | import("ts-morph").JsxSelfClosingElement)[];