import * as React from "react"; import Item from "./ListItem"; import { ListPropsType } from "./PropsType"; export interface ListProps extends ListPropsType { prefixCls?: string; className?: string; role?: string; style?: React.CSSProperties; } export default class List extends React.Component { static Item: typeof Item; static defaultProps: Partial; render(): JSX.Element; }