UNPKG

272 BTypeScriptView Raw
1import * as React from 'react';
2export interface ItemProps {
3 children: React.ReactElement;
4 setRef: (element: HTMLElement) => void;
5}
6export declare function Item({ children, setRef }: ItemProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;