The "no-duplicates" correctly distinguishes Flow type imports from standard imports. ``` import {myClass} from './mod' import type {myType} from './mod' ``` When using the 'declaration' style this is no longer possible: ``` import {myClass} from './mod' import {type myType} from './mod' ```