``` import { Request } from 'express'; declare module 'express' { interface Request { id: number; } } ``` The above code sits alone in a file that I then import from various locations. The code fails to compile, warning `Module augmentation cannot introduce new names in the top level scope.`