import { TableProps as AntTableProps } from 'antd/es/table';
import { HTMLAttributes } from 'react';

export type TableProps<T> = {
  title: string;
}
  & Pick<AntTableProps<T>, 'columns' | 'dataSource'>
  & Pick<HTMLAttributes<any>, 'className'>