import type { FunctionDefinition } from '../../definition_types'; /** * Returns whether the two geometries or geometry columns are disjoint. * This is the inverse of the ST_INTERSECTS function. * In mathematical terms: ST_Disjoint(A, B) ⇔ A ⋂ B = ∅ * * @example * FROM airport_city_boundaries * | WHERE ST_DISJOINT(city_boundary, TO_GEOSHAPE("POLYGON((-10 -60, 120 -60, 120 60, -10 60, -10 -60))")) * | KEEP abbrev, airport, region, city, city_location */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_disjoint.d.ts.map