import { Action } from 'redux';
export declare type Listener<T = any> = (action: Action & {
    payload: T;
}) => void;
export declare const listeners: {
    [id: string]: Listener;
};
export declare const addActionListener: <T>(newListener: Listener<T>) => () => boolean;
