import React from 'react'; import { ListProps } from 'antd'; import './index.less'; interface ListExtraProps { } declare const List: { ({ ...props }: ListProps & ListExtraProps): React.JSX.Element; Item: import("antd/lib/list/Item").ListItemTypeProps; }; export { List };