import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value to a `geohex` value. * A string will only be successfully converted if it respects the * `geohex` format, as described for the * geohex grid aggregation. * * @example * ROW string = "841f059ffffffff" * | EVAL geohex = TO_GEOHEX(string) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_geohex.d.ts.map