Error in app.component.ts -- Has no exported member 'Parse'

Hello,
I’m trying to use Parse into my Ionic project.
When I tried to import parse in app.component.ts I’ve got an error:

Module ‘"…/…/node_modules/@types/parse/ts3.7"’ has no exported member ‘Parse’

Anyone have expreience using Parse-platform in ionic??

Here my Ionic info

Ionic:

Ionic CLI : 6.2.1 (/usr/local/lib/node_modules/@ionic/cli)
Ionic Framework : @ionic/angular 5.0.5
@angular-devkit/build-angular : 0.900.6
@angular-devkit/schematics : 9.0.6
@angular/cli : 9.0.6
@ionic/angular-toolkit : 2.2.0

Cordova:

Cordova CLI : 9.0.0 (cordova-lib@9.0.1)
Cordova Platforms : android 8.1.0
Cordova Plugins : cordova-plugin-ionic-keyboard 2.2.0, cordova-plugin-ionic-webview 4.1.3, (and 6 other plugins)

Utility:

cordova-res (update available: 0.10.0) : 0.8.1
native-run (update available: 0.3.0) : 0.2.9

System:

Android SDK Tools : 26.1.1 (/home/benetj/Android/Sdk)
NodeJS : v10.16.3 (/usr/local/bin/node)
npm : 6.14.2
OS : Linux 4.15

Hello,
Only for knowledgement, I think I found the solution.

The proper way to import Parse is as follows:

import * as Parse from 'parse'

Here the explanation.