import * as React from 'react'; interface EditModeControlsProps { editValue: string; onEditValueChange: (value: string) => void; onCancel: () => void; onSave: () => void; } export declare const EditModeControls: React.FC; export {};