import React from 'react'; /** * React forward-ref function, with a patched type, allowed generic types to pass-thru * More here: https://fettblog.eu/typescript-react-generic-forward-refs/ * We go with re-export this way, instead of patching React typings, to not break typings in dependent projects. */ export declare const forwardRef: (render: (props: P, ref: React.Ref) => React.ReactElement | null) => (props: P & React.RefAttributes) => React.ReactElement | null; //# sourceMappingURL=forwardRef.d.ts.map