import * as React from 'react'; /** Props接口 */ interface IProps { onClose: () => void; id: string; } export default class UIComponents extends React.Component { columns: { title: string; dataIndex: string; }[]; constructor(props: any); onClose: () => void; render(): JSX.Element; } export {};