export interface NewChartJSType { labels: string[]; datasets: Dataset[]; } export interface Dataset { data: any[]; stack?: string; backgroundColor?: string[] | string; hoverBackgroundColor?: string[] | string; hoverBorderColor?: string[] | string; } export declare class SizeOfChart { width: string; height: string; constructor(width: string, height: string); }