How to use GLTFLoader() on Typescript (Angular project)

I’m importing THREE as docs saids

import * as THREE from 'three'
import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js'

But got next error: Cannot find module 'three/addons/loaders/GLTFLoader.js' or its corresponding type declarations.

Also installed @types/three package.

Try

import * as THREE from 'three'
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader'