import { ResolvedFile, DiffResult } from '../types'; /** * Calculate the diff between the desired file list (from resolveFiles) and the * actual state of each output directory. * * Only managed files (tracked in .filedist markers) are included in the 'extra' * analysis, scoped to the packages represented in `resolvedFiles`. * * @returns DiffResult classifying each file as ok, missing, extra, or conflict. */ export declare function calculateDiff(resolvedFiles: ResolvedFile[], verbose?: boolean, cwd?: string, relevantPackagesByOutputDir?: Map>, compareWithSource?: boolean, lockfilePath?: string): Promise; //# sourceMappingURL=calculate-diff.d.ts.map