/// import { MessageType } from '../../redux/types/ChatType'; import { UserType } from '../../redux/types/UserType'; import { ParticipantType } from '../../types/participant'; declare type MessageThreadPropsType = { participants: ParticipantType[]; user: UserType; thread: MessageType; }; declare const MessageThread: ({ participants, user, thread, }: MessageThreadPropsType) => JSX.Element | null; export default MessageThread; //# sourceMappingURL=MessageThread.d.ts.map