export interface MindMapTextEditorProps { value: string; onChange: (text: string) => void; readOnly?: boolean; className?: string; style?: React.CSSProperties; } export declare function MindMapTextEditor({ value, onChange, readOnly, className, style, }: MindMapTextEditorProps): import("react/jsx-runtime").JSX.Element;