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