///
import type { IButtonClickStatusHook } from '../../hooks';
import type { Field } from '../../model';
import type { ICellEditor } from '../editor/type';
export interface ICellValueEditor extends Omit, 'value'> {
wrapClassName?: string;
wrapStyle?: React.CSSProperties;
cellValue?: T;
field: Field;
recordId?: string;
buttonClickStatusHook?: IButtonClickStatusHook;
}