type WhichLike = { sync: (cmd: string) => string; }; type Deps = { which?: WhichLike; }; export default function scanUnknownPlatform(allowFallback?: boolean, deps?: Deps): string | null; export {};