import BarChartOptions from '~/interfaces/BarChartOptions';
/**
* Bar chart based on ApexCharts.
*/
export default class BarChart {
#private;
/**
* Read-only ApexCharts instance.
* @type {ApexCharts|undefined}
*/
get instance(): ApexCharts | undefined;
/**
* Create a new instance of the BarChart class.
* @param {string|HTMLElement} element CSS selector string or HTMLElement.
* @param {BarChartOptions} options Chart options.
*/
constructor(element: string | HTMLElement, options: BarChartOptions);
/**
* Redraw the chart.
*/
reload(): Promise;
}