import React from 'react';
import type { AnyValue } from '../types';
interface UpdateStateFunction extends Function {
    (n: AnyValue): void;
}
export default function useAsyncReference(value: AnyValue): [React.RefObject<AnyValue>, UpdateStateFunction];
export {};
