import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value to a `geo_point` value. * A string will only be successfully converted if it respects the * WKT Point format. * * @example * ROW wkt = "POINT(42.97109630194 14.7552534413725)" * | EVAL pt = TO_GEOPOINT(wkt) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_geopoint.d.ts.map