import Store from '@mjcloud/redux'; import { ReduceBase } from '@mjcloud/reduce'; import { ISystemPageInitialStateParams, ISystemPageState } from './typings'; declare class SystemPageReduce extends ReduceBase { initialState(store: Store, params: ISystemPageInitialStateParams): ISystemPageState; updateStyles(store: Store, params: {}): ISystemPageState; openSystemPage(store: Store, params: {}): ISystemPageState; closeSystemPage(store: Store, params: { cb: (() => void) | undefined; }): ISystemPageState; } declare const _default: SystemPageReduce; export default _default;