import { RefObject } from 'react'; /** * ### `useLazyRef` * * A version of `useRef` that allows for lazy initialization. * * --- * @param initializer A function that returns the initial value for the ref. * * @returns A stable, pre-initialized `RefObject`. */ export declare function useLazyRef(initializer: () => T): RefObject; //# sourceMappingURL=useLazyRef.d.ts.map