export declare class PathMatcher { private readonly compiled; constructor(patterns: readonly string[]); matches(candidate: string): boolean; firstMatch(candidate: string): RegExp | null; static normalize(input: string): string; static withinRoot(root: string, candidate: string): string; } //# sourceMappingURL=path-matcher.d.ts.map