import * as i0 from '@angular/core'; import { OnChanges, Type } from '@angular/core'; import { TdChartSeriesBarComponent, ITdBarSeries } from '@covalent/echarts/bar'; type TdHistogramBinningMethod = 'squareRoot' | 'scott' | 'freedmanDiaconis' | 'sturges'; interface ITdHistogramSeries extends ITdBarSeries { data?: number[] | number[][]; method?: TdHistogramBinningMethod; } declare class TdChartSeriesHistogramComponent extends TdChartSeriesBarComponent implements ITdHistogramSeries, OnChanges { source?: number[] | number[][]; method?: TdHistogramBinningMethod; ngOnChanges(): void; getConfig(): any; private setOptions; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare const HISTOGRAM_MODULE_COMPONENTS: Type[]; /** * @deprecated This module is deprecated and will be removed in future versions. * Please migrate to using standalone components as soon as possible. */ declare class CovalentHistogramEchartsModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { CovalentHistogramEchartsModule, HISTOGRAM_MODULE_COMPONENTS, TdChartSeriesHistogramComponent }; export type { ITdHistogramSeries, TdHistogramBinningMethod };