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