import React from 'react'; interface EditableCellProps { value: any; isEditable: boolean; onChange?: (value: any) => void; isFirstColumn: boolean; isFocused: boolean; isExtraBlankRow: boolean; onFocusChange?: (value: [number, number] | null) => void; onRowDelete?: () => void; children: any; } export declare const EditableCell: React.NamedExoticComponent; export {};