import type { FunctionDefinition } from '../../definition_types'; /** * Calculate the spatial extent over a field with geometry type. Returns a bounding box for all values of the field. * * @example * FROM airports * | WHERE country == "India" * | STATS extent = ST_EXTENT_AGG(location) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_extent_agg.d.ts.map