When exporting a type and importing it in another file, it cannot be found. ```js // A.ts export type A = int16; let a: A = 0; // works // B.ts import { A } from 'A' // throws error: ERROR TS2305: Module './A' has no exported member 'A'. ```