import { ImageSourcePropType } from 'react-native'; export interface BubbleNode { id: string; text: string; value: number; title?: string; subTitle?: string; prefix?: string; surfix?: string; icon?: ImageSourcePropType; } export declare type BubbleProps = BubbleNode & { color?: string; innerColor?: string; radius?: number; marginScale?: number; fontName?: string; fontSize?: number; valueSize?: number; titleSize?: number; subTitleSize?: number; iconSize?: number; fontColor?: string; valueColor?: string; titleColor?: string; subTitleColor?: string; fontStyle?: 'bold' | 'bold-italic' | 'normal'; lineHeight?: number; borderColor?: string; borderWidth?: number; padding?: number; selectedScale?: number; deselectedScale?: number; animationDuration?: number; selectedColor?: string; selectedFontColor?: string; autoSize?: boolean; gradient?: { startColor: string; endColor: string; direction: 'horizontal' | 'vertical'; }; image?: ImageSourcePropType; }; declare const Bubble: ({ text, value, title, subTitle, prefix, surfix, icon, color, innerColor, radius, marginScale, id, fontName, fontSize, valueSize, titleSize, subTitleSize, iconSize, fontColor, valueColor, titleColor, subTitleColor, lineHeight, fontStyle, padding, borderColor, borderWidth, selectedScale, deselectedScale, selectedColor, animationDuration, selectedFontColor, autoSize, gradient, image, }: BubbleProps) => JSX.Element; export default Bubble;