import { TableProps, DropDownProps } from 'antd'; import './style/index.less'; export interface DTableProps { overlay?: DropDownProps['overlay']; dropdownProps?: DropDownProps; } declare function DTable(props: TableProps & DTableProps): JSX.Element; export default DTable;