/** * Expand tilde in path to home directory */ export declare function expandTilde(path: string): string; /** * Compare two path strings as filesystem-equivalent for cwd filtering. * * This is a string-only comparison: it normalizes separators and dot segments, * ignores trailing separators, strips Windows namespace prefixes, and * case-folds only when comparing as Windows. It does not resolve symlinks or * check whether either path exists. */ export declare function areEquivalentPaths(left: string, right: string): boolean; export declare function createPathEquivalenceMatcher(target: string): (candidate: string) => boolean; export declare function createRealpathAwarePathMatcher(target: string): (candidate: string) => boolean; //# sourceMappingURL=path.d.ts.map