/// import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; import { BalloonData } from './Balloon'; declare type Value = { [key: string]: { amount: number; transactions: number; }; }; declare type Values = { [key: string]: Value; }; export declare type Data = { values: Values; }; declare type Props = { tw: TailwindFn; data: Data; colorsArray?: string[]; style?: Style; labelingStyle?: Style; width: number; height: number; scaleSize: number; showLabels?: boolean; fontColor?: string; balloonData?: BalloonData; setBalloonData?: (valueId?: string | undefined) => void; notSelectedColor?: string; }; declare const VerticalBars: ({ tw, data, colorsArray, style, labelingStyle, width, height, scaleSize, showLabels, fontColor, balloonData, setBalloonData, notSelectedColor, }: Props) => JSX.Element; export default VerticalBars;