/** * @author linhd * @date 2022/4/26 11:00 AM * @description 表格元素 */ import React, { FunctionComponent } from 'react'; import './index.scss'; export interface TableElementProps { className?: string; style?: React.CSSProperties; /** 是否具有固定列 */ fixedColumn?: boolean; children?: any; cRef?: any; [name: string]: any; } export declare const TableElement: FunctionComponent; export default TableElement;