UNPKG

matrix-react-sdk

Version:
19 lines (18 loc) 542 B
import React from "react"; import { UnstableValue } from "matrix-js-sdk/src/NamespacedValue"; export declare const BUSY_PRESENCE_NAME: UnstableValue<"busy", "org.matrix.msc3026.busy">; interface IProps { activeAgo?: number; currentlyActive?: boolean; presenceState?: string; coloured?: boolean; className?: string; } export default class PresenceLabel extends React.Component<IProps> { static defaultProps: { activeAgo: number; }; private getPrettyPresence; render(): React.ReactNode; } export {};