import type { Reducer } from '@reduxjs/toolkit'; import type { SchemaReducerType, SchemaReducerWrapper } from '../../../schema-types/types'; import type { AppActions } from '../../actions/types'; export declare const batchActions: (actions: AppActions[]) => AppActions; export declare const batchingReducer: (reducer: Reducer) => SchemaReducerType; export declare const withBatchActions: SchemaReducerWrapper;