import { Position } from "./position";
export interface SourceLocation {
    start: Position;
    end: Position;
}
