import React from 'react'; import type { AnyValue } from '../types'; interface UpdateStateFunction extends Function { (n: AnyValue): void; } export default function useAsyncReference(value: AnyValue): [React.RefObject, UpdateStateFunction]; export {}; //# sourceMappingURL=useAsyncReference.d.ts.map