softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
15 lines (12 loc) • 439 B
TypeScript
import React from 'react';
import { ChatHeaderRenderProps } from '../../types.js';
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 };