import { IState } from './state'; declare type actionType = { type: string; payload?: Record; }; export declare const reducer: (state: IState | undefined, action: actionType) => any; export {};