declare class Token { type: string; value: string; constructor(type: string, value: string); } export { Token };