UNPKG

softchatjs-react-native

Version:

React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com

15 lines (12 loc) 440 B
import React from 'react'; import { ChatHeaderRenderProps } from '../../types.mjs'; import { Conversation } from 'softchatjs-core'; import 'react-native'; type ChatHeaderProps = { conversation: Conversation | null; chatUserId: string; isTyping: boolean; renderChatHeader?: (props: ChatHeaderRenderProps) => void; }; declare function ChatHeader(props: ChatHeaderProps): React.JSX.Element; export { ChatHeader as default };