/// <reference types="react" />
/**
 * fork from https://github.com/alibaba/hooks/blob/master/packages/hooks/src/useLatest/index.ts
 */
declare function useLatest<T>(value: T): import("react").MutableRefObject<T>;
export default useLatest;
