import * as React from 'react'; import IOption from './IOption'; import './index.less'; /** Props接口 */ interface IProps { urlData: IOption; refreshInvoice: () => void; onClose: () => void; currentActive: string; } export default class InvoiceImport extends React.Component { constructor(props: IProps); handleMenuClick: (e: any) => void; renderPageTitle: () => "扫码枪" | "Excel上传" | "影像/板式文件" | "扫描仪" | "手工录入" | "规则导入" | ""; render(): JSX.Element; } export {};