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