import * as React from 'react'; import IOption from './IOption'; /** 组建的props接口 */ interface IProps { urlData: IOption; refreshInvoice: () => void; onClose: () => void; currentActive: string; } export default class UIComponents extends React.Component { /** 构造函数 */ constructor(props: IProps); handleCancel: () => void; renderCurrentTab: () => JSX.Element | undefined; render(): JSX.Element; } export {};