import { default as React } from 'react'; import { CellEditorProps, FieldDefinition } from './pivot-table-types'; interface PivotCellEditorProps { value: unknown; field: string; row: Record; fieldDef?: FieldDefinition; dataType: string; onCommit: (newValue: unknown) => void; onCancel: () => void; customEditor?: React.ComponentType; } declare const PivotCellEditor: React.FC; export default PivotCellEditor;