import { Token } from '../Type/Definition/index.js'; /** * Class which helps to parse tokens. * * **⚠️ Warning**: This is an internal class. You should not use it directly. * * @internal */ declare class TokenParser { rawTokenToToken(token: object): Token; } export { TokenParser };