/// import * as echarts from 'echarts/core'; import { RotationAnimate } from '../LczChartLine/LczBasicArea/type'; import { GeneralTooltipConfig } from './type'; export declare class ChartCarousel { chart: echarts.ECharts; carouselAnimation: RotationAnimate; tooltipConfig: GeneralTooltipConfig; timer?: NodeJS.Timeout; mouselEvent: { hideAnimate: any; initAnimate: any; }; el: HTMLElement; constructor(chart: echarts.ECharts, carouselAnimation: RotationAnimate, tooltipConfig: GeneralTooltipConfig); initAnimate(carouselAnimation?: RotationAnimate, tooltipConfig?: GeneralTooltipConfig, extendObj?: any): false | undefined; hideAnimate(flay?: boolean): void; destroy(): void; }