import { ChartDataOptions } from '../../../../../domains/visualizations/core/chart-data-options/types.js'; import { ChartType } from '../../../../../index'; import { SupportedChartType } from './types.js'; /** * Helper function to detect if chart data options contain forecast or trend analytics */ export declare function hasForecastOrTrend(dataOptions: ChartDataOptions, chartType: ChartType): boolean; export declare function isRestructuredChartType(chartType: ChartType): chartType is SupportedChartType;