import * as iterator from "./iterator"; export declare type Position = { /** * Line number. Starts with 1. */ readonly line: number; /** * Column number. Starts with 1. */ readonly column: number; }; export declare type CharAndPosition = { /** * Character. */ readonly c: string; /** * Position. */ readonly position: Position; }; export declare const terminal = ""; export declare const addPosition: (i: Iterable) => iterator.IterableEx; //# sourceMappingURL=add-position.d.ts.map