import type { FunctionDefinition } from '../../definition_types'; /** * Converts histogram-like values to an exponential histogram. * * @example * FROM histogram_standard_index * | WHERE STARTS_WITH(instance, "hand-rolled") * | EVAL converted = to_exponential_histogram(responseTime) * | SORT instance * | KEEP responseTime, converted * ; */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_exponential_histogram.d.ts.map