/** * End position (exclusive) of a token, given its 1-based start `line`, 0-based start `column`, and * `text`. For a single-line token this is the start line and `column + text.length`. For a token * whose text contains `\n`, the end line advances by the newline count and the end column is the * number of chars after the last newline. */ export declare function endPosition(line: number, column: number, text: string): { endLine: number; endColumn: number; };