import * as React from "react"; interface IProps { listData: string[]; onCloseItem: (item: any, e: any) => void; prefixCls: string; } export default class MutiList extends React.PureComponent { handleDelete: (item: any, e: any) => void; renderList: () => JSX.Element | null; render(): JSX.Element; } export {};