export interface Position {
  /** 0-indexed column number */
  column: number;
  /** 1-indexed line number */
  line: number;
}
