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