import type { BeachballOptions } from '../types/BeachballOptions'; import { type PackageInfos, type ScopedPackages } from '../types/PackageInfo'; /** * Get the packages that were changed due to catalog version modifications. * * PRE: Assumes shared git history has already been fetched, probably by `getChangedPackages`. */ export declare function getCatalogChangedPackages(params: { packageInfos: PackageInfos; scopedPackages: ScopedPackages; options: Pick; /** * All changed file paths in the current branch, relative to `options.path` with forward slashes. * This is only used to determine if the file which might have catalog info has changed (to avoid * reading it from git history in the most common case where it hasn't changed). */ allChangedFiles: Set; }): string[]; //# sourceMappingURL=getCatalogChangedPackages.d.ts.map