/** * Relationship to an extent. */ declare enum Relationship { UNKNOWN = 0, INTERSECTING = 1, ABOVE = 2, RIGHT = 4, BELOW = 8, LEFT = 16, } export default Relationship;