export function getOptions(fontColor?: string): { responsive: boolean; title: { display: boolean; text: string; fontColor: string; }; tooltips: { enabled: boolean; }; legend: { labels: { fontColor: string; }; }; scales: { xAxes: { display: boolean; scaleLabel: { display: boolean; labelString: string; fontColor: string; }; ticks: { autoSkipPadding: number; padding: number; minor: { fontColor: string; }; }; gridLines: { display: boolean; color: string; zeroLineColor: string; }; }[]; yAxes: { type: string; display: boolean; scaleLabel: { display: boolean; labelString: string; fontColor: string; }; ticks: { min: number; max: number; minor: { fontColor: string; }; }; gridLines: { display: boolean; color: string; zeroLineColor: string; }; }[]; }; }; export namespace yAxisDefaults { const type: string; const display: boolean; namespace scaleLabel { const display_1: boolean; export { display_1 as display }; export const labelString: string; } namespace ticks { const min: number; const max: number; } namespace gridLines { const display_2: boolean; export { display_2 as display }; } }