export default class Token {
    type: string;
    value: any;
    constructor(type: string, value?: any);
    toString(): string;
}
