stream-chat-react
Version:
React components to create chat conversations or livestream style chat
13 lines • 599 B
TypeScript
import type { MouseEventHandler } from 'react';
import type { UserResponse } from 'stream-chat';
export type MessageRepliesCountButtonProps = {
labelPlural?: string;
labelSingle?: string;
onClick?: MouseEventHandler;
reply_count?: number;
thread_participants?: UserResponse[];
};
declare function UnMemoizedMessageRepliesCountButton(props: MessageRepliesCountButtonProps): import("react/jsx-runtime").JSX.Element | null;
export declare const MessageRepliesCountButton: typeof UnMemoizedMessageRepliesCountButton;
export {};
//# sourceMappingURL=MessageRepliesCountButton.d.ts.map