stream-chat-react
Version:
React components to create chat conversations or livestream style chat
5 lines (4 loc) • 317 B
TypeScript
import React from 'react';
import { MessageProps } from '../Message';
import type { DefaultStreamChatGenerics } from '../../types/types';
export declare const ThreadHead: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: MessageProps<StreamChatGenerics>) => React.JSX.Element;