import Store from '@mjcloud/redux'; import { DataReduceBase } from '@mjcloud/reduce'; import { IStatisticsInfo, IStatisticsItem, IStatisticsState, IStatisticsColumn, IStatisticsInitialStateParams, IStatisticsLoadedParams } from './typings'; export declare class StatisticsReduce extends DataReduceBase { initialState(store: Store, params: IStatisticsInitialStateParams): IStatisticsState; loaded(store: Store, params: IStatisticsLoadedParams): { isFetching: boolean; collapse: boolean; showCollapse: boolean; dataSource: IStatisticsItem[]; _dataSource: IStatisticsItem[][]; cols: number; size?: number | undefined; info?: IStatisticsInfo | undefined; showRows?: number | undefined; showLine: boolean; controllerId?: string | undefined; columns: IStatisticsColumn[]; orderby?: import("@mjcloud/instance/dist/dataInstanceBase").IOrderbySet[] | undefined; errorMessage?: string | undefined; startLoadParams?: import("@mjcloud/instance/dist/dataInstanceBase").IDataControlStartLoadParams | undefined; tabIndex: number; display: boolean; configIsFetching: boolean; configErrorMessage?: string | undefined; config: import("./typings").IStatisticsConfig; }; updateCollapse(store: Store, params: { collapse: boolean; }): { collapse: boolean; cols: number; size?: number | undefined; info?: IStatisticsInfo | undefined; showRows?: number | undefined; showLine: boolean; showCollapse: boolean; controllerId?: string | undefined; columns: IStatisticsColumn[]; dataSource: IStatisticsItem[]; _dataSource: IStatisticsItem[][]; orderby?: import("@mjcloud/instance/dist/dataInstanceBase").IOrderbySet[] | undefined; isFetching?: boolean | undefined; errorMessage?: string | undefined; startLoadParams?: import("@mjcloud/instance/dist/dataInstanceBase").IDataControlStartLoadParams | undefined; tabIndex: number; display: boolean; configIsFetching: boolean; configErrorMessage?: string | undefined; config: import("./typings").IStatisticsConfig; }; clickAfter(store: any, { controllerId }: { controllerId: any; }): any; } declare const _default: StatisticsReduce; export default _default;