import type { Logger } from '@plugjs/plug/logging';
import type { Diff } from './diff';
/** Print a {@link Diff} to a log, with a nice header by default... */
export declare function printDiff(log: Logger, diff: Diff, header?: boolean): void;
