import { Dispatch, SetStateAction } from 'react'; export type InitialState = S | (() => S); export type UpdateStateAction = SetStateAction; export type StateDispatch = Dispatch>;