UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

10 lines (9 loc) 385 B
import type { PropsWithChildren } from 'react'; import React from 'react'; import type { NotificationSeverity } from 'stream-chat'; export type CustomNotificationProps = { type?: NotificationSeverity | string; active?: boolean; className?: string; }; export declare const CustomNotification: (props: PropsWithChildren<CustomNotificationProps>) => React.JSX.Element | null;