import { MutableRefObject } from 'react';
/**
 * Returns an immutable ref object that stores the latest provided value.
 */
export declare const useLatest: <_Value>(providedValue: _Value) => Readonly<MutableRefObject<_Value>>;
