import type { FunctionDefinition } from '../../definition_types'; /** * Returns the geometric intersection of two geometries. The result is a geometry representing the portion that both input geometries have in common. Returns an empty geometry if the inputs do not intersect. Both geometries must share the same coordinate reference system. * * @example * ROW a = TO_GEOSHAPE("POLYGON ((0 0, 3 0, 3 3, 0 3, 0 0))"), * b = TO_GEOSHAPE("POLYGON ((1 1, 4 1, 4 4, 1 4, 1 1))") * | EVAL intersected = ST_INTERSECTION(a, b) * | KEEP intersected */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_intersection.d.ts.map