import TextEditorLine from "./line"; export declare class TextEditorToken { type: string; private _value; length: number; line: TextEditorLine; editor: any; private _updated; constructor(type: string, _value: string, length: number, line: TextEditorLine, editor: any); readonly encodedValue: any; readonly column: number; readonly value: string; updateValue(value: any): Promise; toString(): any; readonly position: number; }