import type { BeachballOptions } from '../types/BeachballOptions'; import type { PackageInfos, ScopedPackages } from '../types/PackageInfo'; /** * Gets all the changed package names, regardless of the change files. * * PRE: Assumes shared git history has already been fetched, probably by `getChangedPackages`. */ export declare function getAllChangedPackages(params: { options: Pick; packageInfos: PackageInfos; scopedPackages: ScopedPackages; /** * Paths of all committed and staged files in the current branch as returned by git, * relative to `options.path` with forward slashes. */ allChangedFiles: Set; }): string[]; //# sourceMappingURL=getAllChangedPackages.d.ts.map