/** * Find the path to an executable, similar to the `which` command. * Uses Bun.which when running in Bun, falls back to spawnSync for Node.js. * * @param bin - The name of the executable to find * @returns The full path to the executable, or null if not found */ export declare function whichSync(bin: string): string | null; //# sourceMappingURL=which.d.ts.map