import type { FunctionDefinition } from '../../definition_types'; /** * Returns true if two geometries intersect. * They intersect if they have any point in common, including their interior points * (points along lines or within polygons). * This is the inverse of the ST_DISJOINT function. * In mathematical terms: ST_Intersects(A, B) ⇔ A ⋂ B ≠ ∅ * * @example * FROM airports * | WHERE ST_INTERSECTS(location, TO_GEOSHAPE("POLYGON((42 14, 43 14, 43 15, 42 15, 42 14))")) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_intersects.d.ts.map