import { ReduxHistoryEntry } from '../types'; export { ReduxHistoryEntry }; export declare const setReduxModuleEnabled: (enabled: boolean) => void; export declare const getReduxModuleEnabled: () => boolean; export declare const setMaxReduxHistoryLimit: (limit: number) => void; export declare const getMaxReduxHistoryLimit: () => number; export declare const pruneReduxHistory: (targetCount?: number) => number; export declare const isReduxConnected: () => boolean; export declare const getReduxState: () => any; export declare const setReduxAutoRefresh: (val: boolean) => void; export declare const getReduxAutoRefresh: () => boolean; export declare const getLastActionForReducer: () => Record; export declare const clearLastActionForReducer: () => void; export declare const getActionHistory: () => ReduxHistoryEntry[]; export declare const clearActionHistory: () => void; export declare const setReduxState: (state: any) => void; export declare const subscribeReduxState: (cb: () => void) => () => void; export declare const inspectorReduxMiddleware: (storeApi: any) => (next: (action: any) => any) => (action: any) => any; export declare const connectReduxStore: (store: any) => void;