UNPKG

softchatjs-react-native

Version:

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

14 lines (11 loc) 407 B
import React from 'react'; import { ChatTheme } from '../../../types.mjs'; import { Message } from 'softchatjs-core'; import 'react-native'; type EmojiListProps = { recipientId: string; message: Message | null; theme: ChatTheme | undefined; }; declare const EmojiList: React.ForwardRefExoticComponent<EmojiListProps & React.RefAttributes<unknown>>; export { EmojiList, EmojiList as default };