/** * catalog-fallback resolver — last-resort name lookup. * * When TypeScript's resolver returns no symbol (or returns one with * no usable declaration — common for cross-package `dist/*.d.ts` * cases), we fall back to a simpleName lookup against the catalog. * * Returns 'unknown'/'medium' for an unambiguous single-candidate * match; otherwise UNRESOLVED. */ import type { Catalog, ResolverVerdict } from '@opensip-cli/graph'; export declare function resolveByCatalogFallback(simpleName: string, catalog: Catalog): ResolverVerdict; //# sourceMappingURL=catalog-fallback.d.ts.map