import type { FunctionDefinition } from '../../definition_types'; /** * Computes the distance between two points. * For cartesian geometries, this is the pythagorean distance in the same units as the original coordinates. * For geographic geometries, this is the circular distance along the great circle in meters. * * @example * FROM airports * | WHERE abbrev == "CPH" * | EVAL distance = ST_DISTANCE(location, city_location) * | KEEP abbrev, name, location, city_location, distance */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_distance.d.ts.map