You can define a strictly-typed variable that is an Array with the following declaration:
[System.Array]$VariableNameArray
You can also define a strictly-typed variable that is an Integer with the following declaration:
[System.Int]$VariableNameInteger
However, is there a way to define a strictly-typed variable that is an Array of Integers (and not, for example, a scalar integer, or an array of strings)?