import type { FunctionDefinition } from '../../definition_types'; /** * Returns whether the first geometry contains the second geometry. * This is the inverse of the ST_WITHIN function. * * @example * FROM airport_city_boundaries * | WHERE ST_CONTAINS(city_boundary, TO_GEOSHAPE("POLYGON((109.35 18.3, 109.45 18.3, 109.45 18.4, 109.35 18.4, 109.35 18.3))")) * | KEEP abbrev, airport, region, city, city_location */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_contains.d.ts.map