import React from 'react'; import { PaginationConfig, SorterResult, TableCurrentDataSource } from 'antd/lib/table'; export interface StandardTableProps { columns: any; onSelectRow: (row: any) => void; data: any; rowKey?: string; selectedRows: any[]; onChange?: ( pagination: PaginationConfig, filters: Record, sorter: SorterResult, extra?: TableCurrentDataSource ) => void; loading?: boolean; } export default class StandardTable extends React.Component {}