import type { Dispatch, SetStateAction } from 'react'; declare function useSafeState(initialState: S | (() => S)): [S, Dispatch>]; declare function useSafeState(): [S | undefined, Dispatch>]; export default useSafeState;