import { Actions } from "./actions"; import { State } from "./state"; declare type TActions = Actions.GetRequest | Actions.PostRequest | Actions.GetResponse | Actions.PostResponse | Actions.Edit | Actions.AlertSet | Actions.AlertClr | Actions.AlertCancel; declare const _default: (state: State.Props | undefined, action: TActions) => State.Props; export default _default;