/** * @author linhd * @date 2022/4/26 11:00 AM * @description 表格body元素 */ import React, { FunctionComponent } from 'react'; import './index.scss'; export interface TableBodyElementProps { className?: string; style?: React.CSSProperties; children?: any; list?: any; handle?: any; drag?: boolean; onDrag?: any; onChoose?: any; [name: string]: any; } export declare const TableBodyElement: FunctionComponent; export default TableBodyElement;