import { SetStateAction } from 'react'; /** * Allows a functional component to have * a setState API that is similar to a class component's this.setState */ declare const setObjectStateReducer: >(prevState: S, action: Partial | SetStateAction) => S; export default setObjectStateReducer;