UNPKG

softchatjs-react-native

Version:

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

18 lines (15 loc) 549 B
import React from 'react'; import { ChatTheme } from '../../../types.mjs'; import { Message } from 'softchatjs-core'; import 'react-native'; type MessageOptionsProps = { recipientId: string; message: Message | null; isMessageOwner: boolean; onReply: () => void; onStartEditing: () => void; theme: ChatTheme | undefined; openEmojiList: () => void; }; declare const MessageOptions: React.ForwardRefExoticComponent<MessageOptionsProps & React.RefAttributes<unknown>>; export { MessageOptions, MessageOptions as default };