/// <reference types="react" />
import React from 'react';
import Item from './ListItem.web';
import { ListWebProps } from './PropsType';
export default class List extends React.Component<ListWebProps, any> {
    static Item: typeof Item;
    static defaultProps: Partial<ListWebProps>;
    render(): JSX.Element;
}
