import * as React from 'react'; import { ListProps } from './ListPropTypes'; declare class List extends React.Component { static Header: any; static Body: any; static Footer: any; static Item: any; static defaultProps: { prefixCls: string; }; render(): JSX.Element; } export default List;