UNPKG

matrix-react-sdk

Version:
21 lines (20 loc) 536 B
import { FC } from "react"; import { Call } from "../../../models/Call"; export declare enum LiveContentType { Video = 0 } interface Props { type: LiveContentType; text: string; active: boolean; participantCount: number; } /** * Summary line used to call out live, interactive content such as calls. */ export declare const LiveContentSummary: FC<Props>; interface LiveContentSummaryWithCallProps { call: Call; } export declare const LiveContentSummaryWithCall: FC<LiveContentSummaryWithCallProps>; export {};