UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

5 lines (4 loc) 443 B
import React, { PropsWithChildren } from 'react'; import type { MessageInputProps } from './MessageInput'; import type { CustomTrigger, DefaultStreamChatGenerics } from '../../types/types'; export declare const DropzoneProvider: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics, V extends CustomTrigger = CustomTrigger>(props: PropsWithChildren<MessageInputProps<StreamChatGenerics, V>>) => React.JSX.Element;