import React, { ComponentType, ForwardedRef } from 'react'; export interface ForwardRefInjectedProps { /** * The forwarded ref of the containing element */ forwardedRef: ForwardedRef; } export default function forwardRef(WrappedComponent: ComponentType

>): React.ForwardRefExoticComponent & React.RefAttributes> & STATICS;