import { Dispatch, SetStateAction } from 'react'; type UseStateIfMountedParams = S | (() => S); type UseStateIfMountedParamResponse = [S, Dispatch>]; export { UseStateIfMountedParamResponse, UseStateIfMountedParams };