import { ChartType } from '../../chart'; export interface PlotOptions { /** * Options for the series data labels. */ dataLabels?: boolean; /** * (map not support) If no x values are given for the points in a series, pointStart defines on what value to start. * For example, if a series contains one yearly value starting from 1945, set pointStart to 1945. * * @default 0 * @unsupported map */ pointStart?: number; /** * Whether to stack the values of each series on top of each other. * Possible values are undefined to disable, "normal" to stack by value or "percent". * * When stacking is enabled, data must be sorted in ascending X order. * * Some stacking options are related to specific series types. * In the streamgraph series type, the stacking option is set to "stream". * The second one is "overlap", which only applies to waterfall series. * * @default undefined * @unsupported map */ stacking?: PlotOptionsStacking; } export declare type PlotOptionsStacking = 'normal'; export declare function createHighPlotOptions(type: ChartType, plotOptions?: PlotOptions): Highcharts.PlotOptions;