import type { PackageRule, PackageRuleInputConfig } from '../../config/types';
import { Matcher } from './base';
export declare class FileNamesMatcher extends Matcher {
    matches({ packageFile, lockFiles }: PackageRuleInputConfig, { matchFileNames }: PackageRule): boolean | null;
}
