/** * DocumentEditor Smart Component * Composite component for editing documents with real-time collaboration */ import type { Document, DocumentContent } from '../../types'; import React from 'react'; export interface DocumentEditorProps { document: Document; onSave?: (content: DocumentContent) => Promise; onTitleChange?: (title: string) => Promise; readOnly?: boolean; showCollaborators?: boolean; showCollaboratorsCursors?: boolean; onError?: (error: Error) => void; enableRealTimeSync?: boolean; wsUrl?: string; userId?: string; clientId?: string; } export declare const DocumentEditor: React.ForwardRefExoticComponent>; //# sourceMappingURL=DocumentEditor.d.ts.map