import React from 'react'; import { View, StyleProp, ViewStyle } from 'react-native'; import { IMessage } from '../Models'; import { BubbleProps } from './types'; export * from './types'; export type PressableBubbleRowProps = { isGestureEnabled: boolean; onPressMessage?: (context: unknown, message: TMessage) => void; onLongPressStart: () => void; measureBubble: () => void; context: unknown; currentMessage: TMessage; rowSurfaceStyle: StyleProp; wrapperStyleList: StyleProp; bubbleContainerRef: React.RefObject; children: React.ReactNode; }; export declare const Bubble: (props: BubbleProps) => React.ReactElement; //# sourceMappingURL=index.d.ts.map