import type { SeriesId } from "../../../../../models/seriesType/common.js";
import type { ChartSeriesType } from "../../../../../models/seriesType/config.js";
import type { ProcessedSeries } from "../../../corePlugins/useChartSeries/useChartSeries.types.js";
export declare function getNonEmptySeriesArray<OutSeriesType extends Exclude<ChartSeriesType, 'sankey'>>(series: ProcessedSeries<ChartSeriesType>, availableSeriesTypes: Set<OutSeriesType>): {
  seriesId: SeriesId;
  type: OutSeriesType;
}[];