/// import { CometChat } from '@cometchat-pro/react-native-chat'; import { FontStyleInterface, ImageType } from '../base'; export type CometChatMessageOption = { id: string; title: string; icon?: ImageType; packageName?: string; iconTint?: string; titleStyle?: FontStyleInterface; CustomView?: (message: CometChat.BaseMessage) => JSX.Element; onPress?: (message: CometChat.BaseMessage) => void; };