import { IMinimatch } from 'minimatch';
export declare class PatternMatcher {
    static create(patterns: string[]): PatternMatcher;
    private readonly _matchers;
    constructor(matchers: IMinimatch[]);
    match(fileName: string): boolean;
}
