export interface LexerToken { value: string; scope: string; name: string; start: string; end: string; } export declare function tokenTable(tokens: LexerToken[], line: string, nr: number): string;