import { type PropsWithoutRef, type ReactNode, type Ref, type RefAttributes } from 'react'; /** forwardRef でジェネリクスを使うためのラッパー * via https://www.totaltypescript.com/forwardref-with-generic-components */ export declare const genericsForwardRef: (render: (props: PropsWithoutRef

, ref: Ref) => ReactNode) => ((props: P & RefAttributes) => ReactNode);