import React from 'react'; import { TableProps as BaseTableProps } from 'antd/lib/table'; export interface TableProps extends BaseTableProps { emptyComponent?: React.ReactNode; } declare function Table(props: TableProps): JSX.Element; export default Table;