fix(parser): handle import types before function types
This fixes the 'Expected =>, got :' error when parsing function parameters
with import type annotations. The issue occurred because the parser was
trying to parse import types as function types. By checking for import
types first in parse_ts_non_conditional_type, we ensure they are parsed
correctly.
Fixes #9802
Co-Authored-By: 강동윤 <kdy.1997.dev@gmail.com>