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