import type { AgRangeBarSeriesItemStylerParams, AgRangeBarSeriesLabelFormatterParams, AgRangeBarSeriesLabelPlacement, AgRangeBarSeriesOptions, AgRangeBarSeriesStyle, AgRangeBarSeriesStylerParams, AgRangeBarSeriesTooltipRendererParams, PixelSize, Styler } from 'ag-charts-community'; import { _ModuleSupport } from 'ag-charts-community'; import type { InternalAgColorType } from 'ag-charts-core'; declare const AbstractBarSeriesProperties: typeof _ModuleSupport.AbstractBarSeriesProperties, Label: typeof _ModuleSupport.Label; declare class RangeBarSeriesLabel extends Label { placement: AgRangeBarSeriesLabelPlacement; spacing: PixelSize; insideStyle: _ModuleSupport.LabelPlacementStyle; outsideStyle: _ModuleSupport.LabelPlacementStyle; } export declare class RangeBarProperties extends AbstractBarSeriesProperties { xKey: string; yLowKey: string; yHighKey: string; xName?: string; yName?: string; yLowName?: string; yHighName?: string; fill: InternalAgColorType; fillOpacity: number; stroke: string; strokeWidth: number; strokeOpacity: number; lineDash: number[]; lineDashOffset: number; cornerRadius: number; styler?: Styler, AgRangeBarSeriesStyle>; itemStyler?: Styler, AgRangeBarSeriesStyle>; readonly shadow: _ModuleSupport.DropShadow; readonly label: RangeBarSeriesLabel; readonly tooltip: _ModuleSupport.SeriesTooltip, "context">>; } export {};