Retrieves the type of the 'ref' prop for a given component type or tag name.
The component type.
type MyComponentRef = React.ElementRef<typeof MyComponent>; Copy
type MyComponentRef = React.ElementRef<typeof MyComponent>;
type DivRef = React.ElementRef<'div'>; Copy
type DivRef = React.ElementRef<'div'>;
Retrieves the type of the 'ref' prop for a given component type or tag name.