import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value to a `geo_shape` value. * A string will only be successfully converted if it respects the * WKT format. * * @example * ROW wkt = "POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))" * | EVAL geom = TO_GEOSHAPE(wkt) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_geoshape.d.ts.map