stream-chat-react
Version:
React components to create chat conversations or livestream style chat
8 lines (7 loc) • 394 B
TypeScript
import React from 'react';
import type { DefaultStreamChatGenerics } from '../../../types';
export type PollAnswerListProps = {
onUpdateOwnAnswerClick: () => void;
close?: () => void;
};
export declare const PollAnswerList: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>({ close, onUpdateOwnAnswerClick, }: PollAnswerListProps) => React.JSX.Element;