/** * CLI command: manifest diff breaking * * Classifies IR diffs as compatible/deprecated/breaking with consumer impact * analysis. Supports acknowledgments file for CI integration. */ import type { BreakingChangeReport } from '@angriff36/manifest/breaking-change'; export interface BreakingChangeOptions { json?: boolean; ack?: string; ci?: boolean; output?: string; dryRun?: boolean; } export declare function breakingChangeCommand(oldIRPath: string, newIRPath: string, options?: BreakingChangeOptions): Promise; //# sourceMappingURL=breaking-change.d.ts.map