TS2305TS2305 — Module Has No Exported Member
The specified export does not exist in the referenced module.
TS1149An import declaration conflicts with the ambient context of the file.
You are trying to import a module inside a declare block or a .d.ts file using module syntax that is not compatible with ambient declarations.
Use import type for type-only imports in ambient contexts. Move runtime imports outside of declare blocks. Use /// <reference types> for global type references.
TS2305The specified export does not exist in the referenced module.
TS2416A property in a derived class is not compatible with the same property in the base class.
TS2322A value of one type cannot be assigned to a variable or property of a different, incompatible type.
TS2554The number of arguments passed to a function does not match the number of required parameters.
TS2339TypeScript cannot find the specified property on the given type.
TS2564A class property is not initialized in the constructor and has no default value.