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