import React, { PureComponent } from "react"; import IList from "../../interfaces/list"; import ListItem from "./listItem"; export default class List extends PureComponent { static Item: typeof ListItem; render(): React.JSX.Element; } interface IListProps extends IList { noDot?: boolean; className?: string; children?: React.ReactNode; } export {};