type FsLike = {
    existsSync: (path: string) => boolean;
};
type Deps = {
    fs?: FsLike;
    userhome?: (path: string) => string;
};
export default function scanOsxPath(allowFallback?: boolean, deps?: Deps): string | null;
export {};
