Type-only imports MUST use the type keyword.
Example (Correct):
import type { Product, Category } from '@js/types/models'
import { formatPrice } from '@js/utils/formatting'
Example (Incorrect):
import { Product, Category } from '@js/types/models'