This correctly triggers `import/no-duplicates`: ```typescript import { useEffect } from "react"; import { useState } from "react"; ``` But this doesn't: ```typescript import { type ComponentProps, useEffect } from "react"; import { useState } from "react"; ``` The rule should merge the imports above into: ```typescript import { type ComponentProps, useEffect, useState } from "react"; ```