/** * Checks if a binary is in the PATH. This is useful for commands that rely on * external binaries to work. These should be asserted to exist before the * command does anything else. * * @param name The name of the binary to check for * @returns True if the binary is in the PATH */ export declare function hasBinaryInPath(name: string): Promise;