import { type OutputStyle } from '@williamthorsen/nmr-core'; /** * Reports the catalogued dependencies a package-scoped upgrade pass cannot see. * * The upgrade tool reads `pnpm-workspace.yaml` only when it sits at the working directory, so a pass run * inside a package drops every dependency a catalog declares -- and a package whose dependencies are all * catalogued reports itself up to date. Naming them, and the root a covering pass runs from, is what keeps * that from reading as a clean bill of health. * * Runs ahead of the report produced by the workspace `upgrade` script. */ export declare function reportCatalog(cwd: string, style: OutputStyle): void;