import React from 'react'; import { ListProps as AntdListProps } from 'antd/lib/list'; import Item from './item'; export type { ListItemProps, ListItemMetaProps } from './Item'; export type { ColumnCount, ColumnType, ListGridType, ListSize, ListItemLayout, ListLocale, ListConsumerProps, ListContext, ListConsumer } from 'antd/es/list'; export declare type ListProps = AntdListProps; interface CompoundComponent extends React.FC> { Item: typeof Item; } declare const List: CompoundComponent; export default List;