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