import { useRef } from '@taro-hooks/core';
declare function useLatest<T>(value: T): ReturnType<typeof useRef<T>>;
export default useLatest;
