import { FC, PropsWithChildren } from 'react'; interface Column { title: string; dataIndex: string; } declare type Props = PropsWithChildren<{ columns: Column[]; dataList: Record[]; rowKey?: string; /** * table 类名 */ className?: string; }>; /** * 不做复杂的样式,逻辑功能 * 只是减少渲染的时候写的标签 */ declare const Table: FC; export default Table;