If you don't care for maximum POSIX compatibility, i.e. your script is bash-specific, it's better to use "hash", which is going to ignore aliases (but not functions) and also has the benefit of caching the command for further use.
hash foo &>/dev/null || { echo "foo command not found blabla..." >&2; exit 1; }