export declare const Options: (labels: string[]) => { responsive: boolean; maintainAspectRatio: boolean; plugins: { legend: { display: boolean; }; tooltip: { backgroundColor: string; titleAlign: string; bodyAlign: string; borderColor: string; borderWidth: number; titleColor: string; bodyColor: string; padding: number; cornerRadius: number; displayColors: boolean; caretSize: number; caretPadding: number; callbacks: { title: (tooltipItem: any) => string; label: (tooltipItem: any) => string; }; }; }; scales: { y: { ticks: { callback: (value: any) => string; }; }; x: { ticks: { callback: (value: any, index: any) => string; }; }; }; };