UNPKG

rc-virtual-list

Version:
7 lines (6 loc) 272 B
import * as React from 'react'; export interface ItemProps { children: React.ReactElement; setRef: (element: HTMLElement) => void; } export declare function Item({ children, setRef }: ItemProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;