import type { Meta } from '@storybook/react'; import '../../assets/styles/_colors.scss'; import Chart from './Chart'; import './Chart.scss'; declare const meta: Meta; export declare const PieChart: { args: { type: string; chartData: { labels: string[]; datasets: { label: string; data: number[]; count: number[]; backgroundColor: string[]; hoverBackgroundColor: string[]; userLegendMailArray: string[]; }[]; }; chartSize: string; centerText: boolean; legend: boolean; legendHeight: string; legendTitle: string; legendSubtitle: string; legendSubTitleValue: number; legendSubtitleColor: string; legendTitleColor: string; legeContainerWidth: string; isLegendUser: boolean; }; }; export declare const BarChart: { args: { type: string; chartData: { labels: string[]; datasets: { data: number[]; count: number[]; backgroundColor: string[]; toolTipMailArray: string[]; barThickness: number; barPercentage: number; categoryPercentage: number; drawBorder: boolean; }[]; }; chartHeight: string; chartWidth: string; toolTipText: string; xAxisLabel: string; yAxisLabel: string; }; }; export default meta;