UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

8 lines (7 loc) 279 B
import React, { PropsWithChildren } from 'react'; export type CustomNotificationProps = { type: string; active?: boolean; className?: string; }; export declare const CustomNotification: (props: PropsWithChildren<CustomNotificationProps>) => React.JSX.Element | null;