Possibly unused #include directive

Hi, Is there a way to configure CppUnusedIncludeDirective?

In projects we are using some include files act as a public API re-exporting other headers.

Those includes are reported as Possibly unused. For example: #include “testing/base/public/gunit.h”

Which internally reexports

#include "googletest/include/gtest/gtest.h"  // IWYU pragma: export

Is there a way to teach CppUnusedIncludeDirective that include annotated with // IWYU pragma: export should be inlined to prevent false-positives.