import { MutableRefObject } from 'react'; /** * Allocates a ref and initializes it with a computed value. * * @param factory the factory is used during the initial render only to compute the ref's value * @typeParam T type of the generated value * @category Hook */ export declare function useComputedRef(factory: () => T): MutableRefObject; //# sourceMappingURL=use-computed-ref.d.ts.map