import React from 'react'; interface TextEditorProps { editingElement: HTMLElement | null; editingText: string; canvasRef: React.RefObject; onTextChange: (text: string) => void; onSave: () => void; onCancel: () => void; } export declare const TextEditor: React.FC; export {}; //# sourceMappingURL=TextEditor.d.ts.map