import { LangData, PlotOptions, ChartOptions, SeriesOptions } from '../_chart'; export interface PlotColumnOptions extends PlotOptions { /** * A pixel value specifying a fixed width for each column or bar point. * When set to undefined, the width is calculated from the pointPadding and groupPadding. * The width effects the dimension that is not based on the point value. * For column series it is the hoizontal length and for bar series it is the vertical length. * * Defaults to undefined. */ pointWidth?: number; } export interface SeriesColumnOptions extends SeriesOptions, PlotColumnOptions { data?: number[]; } export declare function createColumnOptions(langData: LangData, options?: PlotColumnOptions, chartOptions?: ChartOptions, series?: SeriesColumnOptions[]): Highcharts.Options;