import React from 'react'; interface EditableCellProps { initialValue?: string; onChange?: (value: string) => void; className?: string; style?: React.CSSProperties; } declare const EditableCell: React.ForwardRefExoticComponent>; export default EditableCell;