import { default as React } from 'react'; /** * Typed alias of React.forwardRef that supports generic types * * Read more about why this is still needed: https://www.totaltypescript.com/forwardref-with-generic-components * * @param render - The render function * @returns The function wrapped with React.forwardRef */ export declare function forwardRef(render: (props: P, ref: React.ForwardedRef) => React.ReactNode): (props: P & React.RefAttributes) => React.ReactNode;