import { MiddlewareAPI, Dispatch, Action } from "redux"; export declare const flagReplaying: (state: boolean) => boolean; export declare const setMonitor: (monitor: any) => void; export declare const isReplaying: () => boolean; export declare const dispatch: (_: MiddlewareAPI) => (next: Dispatch) => (action: A) => A & { dispatchFromUpdate: (action: A) => void; };