import * as i0 from '@angular/core'; import { Type } from '@angular/core'; import { TdSeriesDirective, ITdSeries, ITdLabel, ITdItemStyle, ITdMarkPoint, ITdMarkLine, ITdMarkArea } from '@covalent/echarts/base'; type TdMapValueCalculation = 'sum' | 'average' | 'max' | 'min'; type TdMapSeriesLayoutBy = 'column' | 'row'; interface ITdMapScaleLimit { min?: number; max?: number; } interface ITdMapItemStyle { areaColor?: ITdItemStyle; emphasis?: ITdItemStyle; } interface ITdMapSeries extends ITdSeries { map?: string; roam?: boolean; center?: number[]; aspectScale?: number; boudingCoords?: any[]; zoom?: number; scaleLimit?: ITdMapScaleLimit; nameMap?: object; selectedMode?: boolean | string; label?: ITdLabel; itemStyle?: ITdMapItemStyle; zLevel?: number; z?: number; left?: string | number; top?: string | number; right?: string | number; bottom?: string | number; layoutCenter?: any[]; layoutSize?: any[]; geoIndex?: number; mapValueCalculation?: TdMapValueCalculation; showLegendSymbol?: boolean; seriesLayoutBy?: string; data?: any[]; markPoint?: ITdMarkPoint; markLine?: ITdMarkLine; markArea?: ITdMarkArea; silent?: boolean; } declare class TdChartSeriesMapComponent extends TdSeriesDirective implements ITdMapSeries { map?: string; roam?: boolean; center?: number[]; aspectScale?: number; boudingCoords?: any[]; zoom?: number; scaleLimit?: ITdMapScaleLimit; nameMap?: object; selectedMode?: boolean | string; label?: ITdLabel; itemStyle?: ITdMapItemStyle; zLevel?: number; z?: number; left?: string | number; top?: string | number; right?: string | number; bottom?: string | number; layoutCenter?: any[]; layoutSize?: any[]; geoIndex?: number; mapValueCalculation?: TdMapValueCalculation; showLegendSymbol?: boolean; seriesLayoutBy?: string; markPoint?: ITdMarkPoint; markLine?: ITdMarkLine; markArea?: ITdMarkArea; silent?: boolean; constructor(); getConfig(): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare const MAP_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 CovalentMapEchartsModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { CovalentMapEchartsModule, MAP_MODULE_COMPONENTS, TdChartSeriesMapComponent }; export type { ITdMapItemStyle, ITdMapScaleLimit, ITdMapSeries, TdMapSeriesLayoutBy, TdMapValueCalculation };