import Store from '@mjcloud/redux'; import { DataReduceBase } from '@mjcloud/reduce'; import { IChartState, IChartInitialStateParams } from './typings'; export declare class ChartReduce extends DataReduceBase { initialState(store: Store, params: IChartInitialStateParams): IChartState; startLoad(store: Store, params: any): IChartState; loaded(store: Store, params: any): IChartState; updateCanvasSize(store: any, params: any): any; updateTooltip(store: any, params: any): any; } declare const _default: ChartReduce; export default _default;