/**
 * Structure representing a location in an input stream.
 */
export interface InputPosition {
    Index: number;
    Row: number;
    Column: number;
}
