/// import { Style, TailwindFn } from 'twrnc/dist/esm/types'; export declare type BalloonData = { title: string; value: string | number; }[]; declare type Props = { tw: TailwindFn; balloonData: { title: string; value: string | number; }[]; position: [number, number]; style?: Style; fontStyle?: Style; }; declare const Balloon: ({ tw, balloonData, position, style, fontStyle }: Props) => JSX.Element | null; export default Balloon;