import React from 'react'; import { TableProps as AntDTableProps } from 'antd'; export interface TableProps extends Pick, 'columns' | 'dataSource' | 'rowSelection' | 'onRow' | 'rowKey' | 'onChange' | 'expandable' | 'summary'> { containerRef?: React.Ref; loading?: boolean; } export type { TableColumnType } from 'antd'; declare const Table: (props: React.PropsWithChildren>) => JSX.Element; export { Table };