UNPKG

433 BTypeScriptView Raw
1import * as React from 'react';
2import Item from './ListItem';
3import { ListPropsType } from './PropsType';
4export interface ListProps extends ListPropsType {
5 prefixCls?: string;
6 className?: string;
7 role?: string;
8 style?: React.CSSProperties;
9}
10export default class List extends React.Component<ListProps, any> {
11 static Item: typeof Item;
12 static defaultProps: Partial<ListProps>;
13 render(): JSX.Element;
14}