import { RequestAction, ResponseAction, ErrorAction } from "./actions"; import { AjaxState } from "./state"; declare type TActions = RequestAction | ResponseAction | ErrorAction; declare const _default: (state: AjaxState | undefined, action: TActions) => AjaxState; export default _default;