export interface EnhancerOptions {
    eventsPrefix: string
    methodName: string
}
export declare type ActionListener = (action: object) => void
export declare type UnsubscribeFn = () => void
export declare type AddActionListener = (
    actionType: string,
    listener: ActionListener
) => UnsubscribeFn
export declare type Selector<Type> = (state: object) => Type
