import * as React from 'react'; type RefType = React.MutableRefObject | ((state: T) => void); export declare function useEffectfulState(fn: () => T, deps?: React.DependencyList, cb?: RefType): T | undefined; export {};