import { ChartDot } from "../model/ChartDot"; export declare class BarChartData { data: ChartDot[]; color: string; label: string; type: 'BAR' | 'LINE' | 'DASHED-LINE'; stack: string; constructor(data: ChartDot[], color: string, label: string, type?: 'BAR' | 'LINE' | 'DASHED-LINE', stack?: string); }