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