UNPKG

matrix-react-sdk

Version:
11 lines (10 loc) 433 B
import { ReactElement, ReactNode } from "react"; import { StaticNotificationState } from "../../stores/notifications/StaticNotificationState"; interface RoomStatusBarUnsentMessagesProps { title: ReactNode; description?: string; notificationState: StaticNotificationState; buttons: ReactElement; } export declare const RoomStatusBarUnsentMessages: (props: RoomStatusBarUnsentMessagesProps) => ReactElement; export {};