import { Dispatch } from 'react'; type SetValueAction = (prev: S) => Generator; export declare function useValueEffect(defaultValue: S | (() => S)): [S, Dispatch>]; export {};