/** * Point in space representing the location of the wellhead. */ export interface Wellhead { x: number; y: number; /** * The coordinate reference systems of the wellhead. */ crs: string; }