import { TextEditorToken } from "./token"; import TextEditor from "./text-editor"; export default class TextEditorLine { readonly editor: TextEditor; tokens: Array; length: number; constructor(editor: TextEditor); addRawToken(token: any): void; calculateWidth(): any; readonly index: number; getTokenFromColumn(column: any): TextEditorToken; getTokenIndexFromColumn(column: any): number; readonly position: number; readonly height: any; toString(): string; }