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