Explicit imports from [flow-typed](https://github.com/flowtype/flow-typed) module declarations seem to yield false positives. Example: ```js import type { ActionCreators } from "redux" // error ActionCreators not found in 'redux' import/named ``` The error should not appear because [flow can attach declared types to named modules via flow-typed or other library files](https://flowtype.org/docs/third-party.html#using-flow-typed), even if the modules themselves do not export those types. In the example above, redux does not export any types. Instead, a [flow-typed library](https://github.com/flowtype/flow-typed/blob/master/definitions/npm/redux_v3.x.x/flow_v0.33.x-/redux_v3.x.x.js) handles the type declarations.