/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { Chart } from './../Chart.js';
import { StockChart } from './../StockChart.js';
import { Sparkline } from './../Sparkline.js';
type Charts = Chart | StockChart | Sparkline;
export { Charts };
