UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

9 lines (8 loc) 352 B
import type { PropsWithChildren } from 'react'; import React from 'react'; export declare const DialogPortalDestination: () => React.JSX.Element | null; type DialogPortalEntryProps = { dialogId: string; }; export declare const DialogPortalEntry: ({ children, dialogId, }: PropsWithChildren<DialogPortalEntryProps>) => React.JSX.Element; export {};