import React from 'react'; import type { TableProps } from 'antd/lib/table'; import type { ButtonType } from 'antd/lib/button'; export interface MyTreeTableEDProps extends TableProps { selectType: string; columns: any[]; form: any; style: any; extend: any[]; rowActions: any[]; fixedAction: boolean; hiddenAction: boolean; actionWidth: any; _component: any; colorFormatInfo: any; tableTheme: string; extendNum?: number; headBtnNum?: number; isFlexColumn: boolean; tableTitle?: string; adjustModel: string; iconPosition?: string; customStyle?: ButtonType; rowKeyType?: string; rowKey?: string; showHead?: boolean; rowSelectionDisabled: boolean; groupsName: string; headExtends: any[]; defaultExpandedRowKeys?: string[] | number[]; expandIconPosition?: string; expandIconPositionRef?: { title: string; dataIndex?: string; }; expandCloseIcon?: any; expandOpenIcon?: any; rowExpandable?: { code: Function; originCode?: string[]; }; } declare const TreeTableED: React.FC; export default TreeTableED;