import type { FunctionDefinition } from '../../definition_types'; /** * Calculate the spatial centroid over a field with spatial geometry type. * Supports `geo_point` and `cartesian_point`, as well as `geo_shape` and `cartesian_shape`. * * @example * FROM airports * | STATS centroid=ST_CENTROID_AGG(location) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_centroid_agg.d.ts.map