import { PnpmError } from '@pnpm/error';
import { type ErrorRelatedSources } from './ErrorRelatedSources';
export interface BreakingChangeErrorOptions extends ErrorRelatedSources {
    code: string;
    message: string;
}
export declare class BreakingChangeError extends PnpmError {
    relatedIssue?: number;
    relatedPR?: number;
    additionalInformation?: string;
    constructor(opts: BreakingChangeErrorOptions);
}
