matrix-react-sdk
Version:
SDK for matrix.org using React
11 lines (10 loc) • 343 B
TypeScript
import React from "react";
import type { MatrixEvent } from "matrix-js-sdk/src/matrix";
interface CallEventProps {
mxEvent: MatrixEvent;
}
/**
* An event tile representing an active or historical Element call.
*/
export declare const CallEvent: (props: CallEventProps & React.RefAttributes<any>) => React.ReactElement | null;
export {};