import React from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; export type BubbleProps = { /** * background color of the bubble */ color?: string; /** * the style for the container view */ containerStyle?: StyleProp; /** * the style for the TextInput inside bubble */ textStyle?: StyleProp; textColor?: string; bubbleMaxWidth?: number; }; /** * a component to show text inside a bubble */ export type BubbleRef = { setText: (text: string) => void; }; export declare const BubbleComponent: React.ForwardRefExoticComponent>; export declare const Bubble: React.MemoExoticComponent>>; //# sourceMappingURL=ballon.d.ts.map