import { default as React } from 'react'; interface RenameDialogProps { visible: boolean; title: string; onTitleChange: (title: string) => void; onSave: () => void; onCancel: () => void; onKeyDown: (e: React.KeyboardEvent) => void; } declare const RenameDialog: React.FC; export default RenameDialog;