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