import { AppState, State, OperationState } from './interface'; declare const _default: { state: State; reducers: { setPageIndex(prevState: State, payLoad: { pageIndex: number; total: number; }): void; setAppList(prevState: State, payLoad: any): void; }; effects: (dispatch: any) => { getAppList(params: any): Promise; dealApply(payload: { code: string; currentStatus: AppState; toBeState: OperationState; }, store: any): Promise; }; }; export default _default;