import { Action } from "redux";
/**
 * Interface to be used with asynchronous actions.
 */
export interface ThunkAction {
    (dispatch: (action: Action | ThunkAction) => void, getState: <S>() => S): any;
}
