export declare const DEFAULT_COST_BAR_GRAPH_OPTIONS: { responsive: boolean; indexAxis: "x"; plugins: { legend: { position: "bottom"; labels: { usePointStyle: boolean; pointStyle: string; color: string; padding: number; font: { size: number; }; }; }; }; scales: { y: { beginAtZero: boolean; grid: { color: string; borderDash: number[]; }; stacked: boolean; ticks: { color: string; font: { size: number; }; callback: (v: any) => string; }; }; x: { stacked: boolean; grid: { color: string; }; ticks: { color: string; font: { size: number; }; }; }; }; };