stream-chat-react
Version:
React components to create chat conversations or livestream style chat
10 lines (9 loc) • 399 B
TypeScript
import type { PropsWithChildren } from 'react';
import React from 'react';
export declare const DialogPortalDestination: () => React.JSX.Element | null;
type DialogPortalEntryProps = {
dialogId: string;
dialogManagerId?: string;
};
export declare const DialogPortalEntry: ({ children, dialogId, dialogManagerId, }: PropsWithChildren<DialogPortalEntryProps>) => React.JSX.Element;
export {};