This i not quite true. PSRs always have to be evaluated in a version context.
I guess most of them would not make any sense if we are talking about PHP 4.
Nevertheless, my proposal was to omit the redundant declaration. Which means that it will still be suitable for all versions.
Quick example to demonstrate a version agnostic rule:
> When provided it MUST contain a "Type" to indicate what is expected.
becomes
> When provided it MUST contain a "Type" to indicate what is expected, if not already defined by type hints.
Now all versions are happy. Those versions which do not support type hints for this specific element, can not define a type, which makes the type part mandatory again.
BTW .. if we take PHP 7.4 into account, this proposal would also affect @var tag when its used for describing class properties.