import { type FileActionPlan } from '../../../../domain.objects'; /** * for each "fixable" and "failed" check in the plan, apply the fix */ export declare const applyPlan: ({ plan, projectRootDirectory, }: { plan: FileActionPlan; projectRootDirectory: string; }) => Promise;