UNPKG

257 BTypeScriptView Raw
1import * as React from 'react';
2import type { ListProps, ListRef } from './List';
3declare const List: <Item = any>(props: ListProps<Item> & {
4 children?: React.ReactNode;
5} & {
6 ref?: React.Ref<ListRef>;
7}) => React.ReactElement;
8export default List;