import { ChartType } from '../../chart'; import { PlotOptions } from '../plot'; export * from './point'; export interface SeriesOptions extends PlotOptions { /** * 图表类型 */ type?: ChartType; /** * The name of the series as shown in the legend, tooltip etc. * * @default undefined */ name?: string; /** * 该 series 对应哪个 y 轴 * * 0 左边 1 右边 * * @default 0 * @unsupported map, pie */ yAxis?: 0 | 1; } export declare function createSeriesWithStateHoverColors(type: T, series: S[], colors: string[]): Array | undefined; export declare function createHighSeriesOptions(type: T, series?: S[]): Array | undefined;