import * as React from 'react'; import { Table } from 'antd' export default class DiffTable extends Table { static defaultProps: { columns: any[]; custom?: boolean; scope?: string; tableKey?: string; dataExport?: boolean; resize: boolean; dragMode: 'column' | 'row' | 'free' | false; inline: boolean; columnEmptyText: string | JSX.Element; } }