/// import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; import { BalloonData } from './Balloon'; export declare type Data = { labels: string[][]; values: { [key: string]: { amount: number; transactions: number; }; }[]; }; 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: number | 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;