import type React from 'react'; /** * Takes a ref from forwardRef and makes it safe to use. * Sometimes the ref may be undefined, but we want to use the ref internally for something like input focus * * @param ref The forwarded ref to use * @returns A React ref that is safe to use inside forwardRef */ export default function useForwardedRef(ref: ((instance: T | null) => void) | React.MutableRefObject | null): React.MutableRefObject; //# sourceMappingURL=useForwardedRef.d.ts.map