import { Table as AntdTable } from 'antd'; import type { TableProps } from './interface'; import ForwardTable from './table'; type InternalTableType = typeof ForwardTable; interface TableInterface extends InternalTableType { defaultProps?: Partial>; SELECTION_COLUMN: typeof AntdTable.SELECTION_COLUMN; EXPAND_COLUMN: typeof AntdTable.EXPAND_COLUMN; SELECTION_ALL: typeof AntdTable.SELECTION_ALL; SELECTION_INVERT: typeof AntdTable.SELECTION_INVERT; SELECTION_NONE: typeof AntdTable.SELECTION_NONE; Column: typeof AntdTable.Column; ColumnGroup: typeof AntdTable.ColumnGroup; Summary: typeof AntdTable.Summary; } declare const Table: TableInterface; export default Table;