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