UNPKG

@sendbird/uikit-react-native

Version:

Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

10 lines (9 loc) 338 B
import React from 'react'; import type { SendbirdMessage } from '@sendbird/uikit-utils'; type Props = { newMessages: SendbirdMessage[]; visible: boolean; onPress: () => void; }; declare const _default: React.MemoExoticComponent<({ newMessages, visible, onPress }: Props) => React.JSX.Element | null>; export default _default;