import React from 'react'; import { ExpressionRenderingParams } from '../../utils/PropsType'; export interface MyEditComponent { inlineVChange: (date: any, _label: any) => void; c?: any; disabled: boolean; currentRowKey: any; rowId?: string | number; rowData?: any; form: any; compId: any; sandBoxSafeRun?: any; engineApis?: any; editoption: { [key: string]: any; limitRange?: LimitRangeType; startTime?: string; endTime?: string; timeMode: 'time' | 'date' | 'month' | 'year'; customExpression: ExpressionRenderingParams; customExpressionErrorMsg: ExpressionRenderingParams; }; modalSelectParams?: any; appId?: any; onChange: (value: any) => void; onBlur: (value: any) => void; } declare type LimitRangeType = '' | 'no' | 'afterToday' | 'beforeToday' | 'period' | 'custom'; declare const EditComponent: React.FC; export default EditComponent;