import { Action } from "./action"; import { IState } from "./typings"; export default function reducer(state: IState, action: { type: Action; payload?: any; }): any;