declare is an internal command of bash. (internal command use help for displaying "manpage"). It is used to show and define variables or show function bodies.
Syntax: declare [options] [name[=value]]...
# options are used to define
# an integer
declare -i myInteger
declare -i another...