import { MongoClient } from 'mongodb';
pouze importuje definici typu z node_modules/@types/mongodb/index.d.ts
import * as mongodb from 'mongodb';
importuje vše z node_modules/mongodb/index.js a je to stejné jako
let mongodb = require('mongodb');