import type { ButtonType } from 'antd/lib/button'; import React from 'react'; import type { FunctionHandleType } from '../../Card'; export interface MyTableHeadProps { showHead?: boolean; tableTitle?: string; showCustom?: any; customStyle?: ButtonType; customTitle?: string; type?: string; iconPosition?: string; isIconFont?: boolean; headExtends?: any[]; theme?: 'filled' | 'outlined' | 'twoTone'; fontAddress?: string; columns?: any[]; onHeadClickBtn1?: FunctionHandleType; onHeadClickBtn2?: FunctionHandleType; onHeadClickBtn3?: FunctionHandleType; onHeadClickBtn4?: FunctionHandleType; onHeadClickBtn5?: FunctionHandleType; selectedCols?: any[]; setSelectedCols?: any; setColOrder?: (value: React.SetStateAction) => any | undefined; source: 'editor' | 'engine'; size?: any; colOrder?: any[]; iconFile?: any; headBtnNum?: number; sandBoxSafeRun?: any; engineApis?: any; getEdEngineApi?: any; getEngineApis?: any; headIconType?: string; headPrefixIcon?: { prefixIconTheme?: string; prefixIconType?: string; prefixIconiconFile?: { fileId: string; fileCode: string; }; prefixIconFontAddress?: string; }; } declare const TableHead: React.FC; export default TableHead;