import { BreakingChangeError } from './BreakingChangeError.js'; import { type ErrorRelatedSources } from './ErrorRelatedSources.js'; export interface ModulesBreakingChangeErrorOptions extends ErrorRelatedSources { modulesPath: string; } export declare class ModulesBreakingChangeError extends BreakingChangeError { modulesPath: string; constructor(opts: ModulesBreakingChangeErrorOptions); }