import React, { CSSProperties } from 'react'; import type { ContentStyle } from '../types/contentStyle'; import type { FuncExpExeCuteType } from '../../utils/hooks/useFuncExpExecute'; export interface MyFormatCell { contentStyle: ContentStyle | undefined | {}; bgColorStyle: { formatStyle: number; contentType: string; fontColor: string; borderColor: string; backgroundColor: string; }; tdProps: any; funcExpExecute?: FuncExpExeCuteType; engineApis: any; commonCellClick?: () => void; mode?: string; width?: number; } export interface CellContentProps { engineApis: any; appId: string; pageId: string; row: any; rowId: string | number; rowIndex: number; children: any; contentStyle: ContentStyle; funcExpExecute?: FuncExpExeCuteType; controllLineStyle?: CSSProperties | null; mode?: string; width?: number; rowText?: any; $$componentItemId: string; } declare const FormatCell: React.FC; export default FormatCell;