With previous version of Firebase I use to import the Typescript definition of the User as following:
import {User} from 'firebase';
Following the introduction of v8 this import does not work anymore:
Module '"../../../../node_modules/firebase"' has no exported member 'User'. Did you mean to use 'import User from "../../../../node_modules/firebase"' instead?
The release notes points the fact that the CJS bundles was dropped, nevertheless, does not mention how this import should now be resolved.
Any help appreciated, thank you in advance.