import { default as React } from 'react'; /** * Custom hook for creating a lazy-initialized mutable ref. * @template T - The type of the value stored in the ref. * @param {() => T} fn - A function that returns the initial value for the ref. * @returns {React.MutableRefObject} - The mutable ref object. */ export declare function useLazyRef(fn: () => T): React.MutableRefObject; //# sourceMappingURL=use-lazy-ref.d.ts.map