type FsLike = { existsSync: (path: string) => boolean; }; type Deps = { fs?: FsLike; env?: NodeJS.ProcessEnv; }; export default function scanWindowsPath(allowFallback?: boolean, deps?: Deps): string | null; export {};