Given the following declarations in a tst package using kvoptions
\ProvidesPackage{tst}
...
\DeclareBoolOption{abc}
\DeclareComplementaryOption{cba}{abc}
Which is the correct way of declaring both options as local:
\DeclareLocalOptions{abc}
or
\DeclareLocalOptions{abc,cba}
since they both share the same internal representation (flag)?