### What happened? Previously, I was using this type: ```ts import type { Token } from "@octokit/auth-token/dist-types/types.js" ``` With the conversion to ESModules (I think), the file is no longer accessible, so I have to do with this: ```ts // Module '"@octokit/auth-token"' declares 'Token' locally, but it is not exported. ts(2459) import type { Token } from "@octokit/auth-token" ``` But the type forgot to be exported ### Versions "@octokit/auth-token": "^5.0.1", ### Relevant log output _No response_ ### Code of Conduct - [X] I agree to follow this project's Code of Conduct