import { AggregationTypes } from './constants/AggregationTypes'; import { HistogramFeature } from '../types'; export function histogram(args: { data: Record[]; valuesColumns?: string[]; joinOperation?: AggregationTypes; ticks: number[]; operation?: AggregationTypes; }): HistogramFeature;