import { type ChangeSummary } from './types'; export interface PrintChangeSummaryOptions { cwd: string; onlyPrintConflicts?: boolean; } export default function printChangeSummary(summary: ChangeSummary, options: PrintChangeSummaryOptions): void;