UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 296 B
import React from 'react'; import type { PropsWithChildren } from 'react'; import type { ComponentContextValue } from './ComponentContext'; export declare function WithComponents({ children, overrides, }: PropsWithChildren<{ overrides: Partial<ComponentContextValue>; }>): React.JSX.Element;