/** * True when `path` is inside the directory `scope`, by path-segment match. * * Examples: * pathInScope("src/foo.ts", "src") → true * pathInScope("src/foo.ts", "src/") → true (trailing slash tolerated) * pathInScope("src", "src") → true (exact match) * pathInScope("src2/foo.ts", "src") → false (no segment boundary) * pathInScope("README.md", "") → true (empty scope = no filter) */ export declare function pathInScope(path: string, scope: string): boolean; //# sourceMappingURL=path-scope.d.ts.map