import type { FunctionDefinition } from '../../definition_types'; /** * Counts the number of points in the supplied geometry. * * @example * FROM airport_city_boundaries * | WHERE abbrev == "CPH" * | EVAL points = ST_NPOINTS(city_boundary) * | KEEP abbrev, airport, points */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=st_npoints.d.ts.map