import InternalList from './List'; import Item from './Item'; type InternalListType = typeof InternalList; interface ListProps extends InternalListType { Item: typeof Item; } declare const List: ListProps; export default List;