mock.d.ts 244 B

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