/** * ChatInterface Smart Component * Composite component for real-time chat and messaging */ import type { DocumentComment, User } from '../../types'; import React from 'react'; export interface ChatInterfaceProps { currentUser: User; comments: DocumentComment[]; onSendMessage?: (content: string) => Promise; onReplyMessage?: (commentId: string, content: string) => Promise; loading?: boolean; onError?: (error: Error) => void; } export declare const ChatInterface: React.ForwardRefExoticComponent>; //# sourceMappingURL=ChatInterface.d.ts.map