import type { ResolvedChanges, UpdateReference } from './types/types';
/** Shows all the breaking changes in form of a console.table */
export declare function getBreakingChangesMessage(allChanges: ResolvedChanges, updateReferences: Record<string, UpdateReference>, 
/** Width of the table columns 1 and 2. Min width for packageColumnWidth is 40 and for breakingChangeColumnWidth it's 60 */
options: {
    packageColumnWidth: number;
    breakingChangeColumnWidth: number;
}): string;
