import { ReduxAction } from './Objects/ReduxAction'; export interface IReduxConfig { [propName: string]: string; } export declare const setConfig: (config: any) => any; export declare const initCurrentId: () => number; export declare const getCurrentId: () => number; export declare const setCallback: (_callback: Function) => void; export declare const setMaxActions: (_maxActions?: number | undefined) => void; export declare const getMaxActions: () => number; export declare const clear: () => never[]; export declare const getStoredActions: () => number; export declare const reduxLoggerMiddleware: (_store: any) => (next: any) => (action: any) => any; export declare const getReduxActions: () => ReduxAction[];