/** * Return true if `child` is strictly contained within `parent` — i.e. equal or * a descendant. Uses `path.relative` so `/repo` does not contain * `/repo-malicious` (a prefix-match bug we hit on the first pass). An absolute * result from `relative` means the two roots live on different Windows drives — * definitely not contained. */ export declare function isPathWithin(parent: string, child: string): boolean; //# sourceMappingURL=path-contains.d.ts.map