import React from 'react'; interface IProps { onClose: () => void; importInvoice: (list: any) => void; taskUuid: string; } export default class SellerImport extends React.Component { columns: ({ title: string; dataIndex: string; ellipsis: boolean; width: number; render?: undefined; } | { title: string; width: number; dataIndex: string; render: (text: any) => string; ellipsis?: undefined; } | { title: string; dataIndex: string; width: number; ellipsis: boolean; render: (text: any) => any; })[]; constructor(props: any); onSubmitSchema: (value: any) => void; componentDidMount(): void; getData: (params: any) => Promise; /** * 导入发票 */ onImport: () => void; onPageChange: (pageNum: any, pageSize: any) => void; onRefresh: () => void; onSearch: (data?: {}) => void; topExpand: () => JSX.Element; onClose: () => void; render(): JSX.Element; } export {};