import * as React from 'react'; /** Props接口 */ interface IProps { changeView: (value: any) => void; enabled: boolean; } export default class UIComponents extends React.Component { formRef: any; constructor(props: any); radioChange: (e: any) => void; onDateChange: (_date: any, dateString: any) => void; searchCompany: (value: any, callback?: any) => Promise; searchGoods: (value: any) => Promise; companySelect: (companyName: any) => void; onFinish: (values: any) => Promise; topExpand: () => JSX.Element; componentDidMount(): void; onRefresh: () => void; getData: (params: any) => Promise; onSearch: (data?: {}) => void; render(): JSX.Element; } export {};