import type { FunctionDefinition } from '../../definition_types'; /** * Encode a numeric to an aggregate_metric_double. * * @example * ROW x = 3892095203 * | EVAL agg_metric = TO_AGGREGATE_METRIC_DOUBLE(x) * * @example * ROW x = [5032, 11111, 40814] * | EVAL agg_metric = TO_AGGREGATE_METRIC_DOUBLE(x) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_aggregate_metric_double.d.ts.map