/** * Resolve JSX elements: `` / `...`. * * Component identifiers (PascalCase) resolve to their declarations * via the type checker. Lower-cased intrinsic elements (`
`) * are ignored — they have no catalog entry. * * Returns `UNRESOLVED` only when the JSX tag is intrinsic or the type checker * cannot connect the component tag back to a cataloged declaration. */ import ts from 'typescript'; import type { EdgeResolver } from './types.js'; type JsxOpeningLike = ts.JsxOpeningElement | ts.JsxSelfClosingElement; export declare const resolveJsxElement: EdgeResolver; export {}; //# sourceMappingURL=jsx-element.d.ts.map