import * as React from 'react'; /** Props接口 */ interface IProps { onClose: () => void; onSuccess: () => void; /**被选中id列表 */ list: any[]; } /** * 申诉页面 */ export default class UIComponents extends React.Component { formRef: any; constructor(props: any); onClose: () => void; onSubmit: () => void; onFinish: (values: any) => Promise; render(): JSX.Element; } export {};