import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value to a `cartesian_point` value. * A string will only be successfully converted if it respects the * WKT Point format. * * @example * ROW wkt = ["POINT(4297.11 -1475.53)", "POINT(7580.93 2272.77)"] * | MV_EXPAND wkt * | EVAL pt = TO_CARTESIANPOINT(wkt) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_cartesianpoint.d.ts.map