import type { PackageRule, PackageRuleInputConfig } from '../../config/types';
import { Matcher } from './base';
export declare class NewValueMatcher extends Matcher {
    matches({ newValue }: PackageRuleInputConfig, { matchNewValue }: PackageRule): boolean | null;
}
