```js // foo.js // @flow strict export type Foo = string export default '' ``` ```js // index.js // @flow strict import foo from './foo' ``` Expected: `export type Foo` is reported as unused Actual: no errors