import * as React from 'react';
import { Table } from 'antd'

export default class DiffTable<T> extends Table<T> {
  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;
  }
}
