import type { ContentClick } from '../types/contentStyle'; import type { FuncExpExeCuteType } from '../../utils/hooks/useFuncExpExecute'; interface useFormatCellProps extends ContentClick { appId: string; pageId: string; modalHeight?: number; modalWidth?: number; funcExpExecute?: FuncExpExeCuteType; engineApis: any; $$componentItemId: string; } declare const useFormatCell: (props: useFormatCellProps) => { onCellClick: (row: any, rowId: string | number, rowIndex: number, singleObjData?: any) => Promise; handleCellContent: (row: any, rowIndex: number, rowText?: any, singleObjData?: any) => any; handleDataInput: ({ dataInput, row, rowIndex, rowText, singleObjData }: any) => any; }; export default useFormatCell;