/** * .what = processes self-deps in declared JSON for the fix phase * .why = self-deps should be omitted (not added/upgraded) unless extant is link:./file:. * * returns a modified declared object with self-deps removed (except preserved link:./file:.) * emits warns for each self-dep action taken */ export declare const processSelfDepsForFix: (input: { declared: Record; found: Record; targetPackageName: string; }) => Record;