import { State, StatefulWidget, Widget } from "@meursyphus/flitter"; import { BarProps } from "../Bar"; import { TooltipProps } from "../Tooltip"; import { DataLabelProps } from "../../../../common/CartesianChart/component/DataLabel"; declare class BarGroup extends StatefulWidget { direction: "vertical" | "horizontal"; gap: number; values: { data: number; legend: string; color: string; }[]; minValue: number; maxValue: number; Bar: (props: BarProps) => Widget; Tooltip: (props: TooltipProps) => Widget; DataLabel: (props: DataLabelProps) => Widget; label: string; constructor({ direction, values, minValue, maxValue, Bar, Tooltip, DataLabel, gap, label, }: BarGroupProps); createState(): State; } declare const _default: (arr_0: BarGroupProps) => BarGroup; export default _default; type BarGroupProps = { direction: "vertical" | "horizontal"; gap: number; values: { data: number; legend: string; color: string; }[]; minValue: number; maxValue: number; Bar: (props: BarProps) => Widget; Tooltip: (props: TooltipProps) => Widget; DataLabel: (props: DataLabelProps) => Widget; label: string; };