import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { type MessageProps } from '../../../interfaces'; import type { BubbleProps } from 'react-native-gifted-chat/lib/Bubble/types'; import { CustomImageVideoBubbleProps } from './CustomImageVideoBubble'; interface CustomBubbleProps { bubbleMessage: BubbleProps; position: 'left' | 'right'; customImageVideoBubbleProps?: CustomImageVideoBubbleProps; onSelectedMessage: (message: MessageProps) => void; userUnreadMessage: boolean; customContainerStyle?: StyleProp; customTextStyle?: StyleProp; unReadSentMessage?: string; unReadSeenMessage?: string; messageStatusEnable: boolean; customMessageStatus?: (hasUnread: boolean) => React.JSX.Element; } export declare const CustomBubble: React.FC; export {}; //# sourceMappingURL=CustomBubble.d.ts.map