import type { AgMarkerShape, AgRangeAreaSeriesItemStylerParams, AgRangeAreaSeriesItemType, AgRangeAreaSeriesLabelFormatterParams, AgRangeAreaSeriesLabelPlacement, AgRangeAreaSeriesOptions, AgRangeAreaSeriesTooltipRendererParams, AgSeriesMarkerOptions, AgSeriesMarkerStyle, PixelSize, Styler } from 'ag-charts-community'; import { _ModuleSupport } from 'ag-charts-community'; import type { InternalAgColorType, SizedPoint } from 'ag-charts-core'; import { BaseProperties, InterpolationProperties } from 'ag-charts-core'; import type { AgNumericValue } from 'ag-charts-types'; export interface RangeAreaMarkerDatum extends Omit<_ModuleSupport.CartesianSeriesNodeDatum, 'yKey' | 'yValue'> { readonly itemId?: never; readonly itemType: AgRangeAreaSeriesItemType; readonly index: number; readonly yLowKey: string; readonly yHighKey: string; readonly yLowValue: AgNumericValue; readonly yHighValue: AgNumericValue; readonly point: Readonly; readonly enabled: boolean; style?: AgSeriesMarkerStyle; } declare const CartesianSeriesProperties: typeof _ModuleSupport.CartesianSeriesProperties, Label: typeof _ModuleSupport.Label; type RangeAreaSeriesItemOptions = NonNullable; type RangeAreaSeriesLineOptions = NonNullable; export type RangeAreaSeriesParams = Pick, 'xKey' | 'yLowKey' | 'yHighKey' | 'itemType'>; declare class RangeAreaSeriesLabel extends Label { placement: AgRangeAreaSeriesLabelPlacement | AgRangeAreaSeriesLabelPlacement[]; spacing: PixelSize; insideStyle: _ModuleSupport.LabelPlacementStyle; outsideStyle: _ModuleSupport.LabelPlacementStyle; } declare class RangeAreaInvertedStyle { enabled: boolean; fill?: InternalAgColorType; fillOpacity: number; } declare class RangeAreaLineStyle extends BaseProperties { stroke: string; strokeWidth: number; strokeOpacity: number; lineDash: number[]; lineDashOffset: number; readonly marker: _ModuleSupport.SeriesMarker; } declare class RangeAreaItemProperties extends BaseProperties { low: RangeAreaLineStyle; high: RangeAreaLineStyle; } declare class SharedRangeAreaMarker extends BaseProperties> { enabled?: boolean; shape?: AgMarkerShape; size?: number; fill?: InternalAgColorType; fillOpacity?: number; stroke?: string; strokeWidth?: number; strokeOpacity?: number; lineDash?: number[]; lineDashOffset?: number; itemStyler?: AgSeriesMarkerOptions['itemStyler']; } export declare class RangeAreaProperties extends CartesianSeriesProperties { 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; interpolation: InterpolationProperties; styler?: Styler; item: RangeAreaItemProperties; readonly invertedStyle: RangeAreaInvertedStyle; readonly shadow: _ModuleSupport.DropShadow; readonly marker: SharedRangeAreaMarker; readonly label: RangeAreaSeriesLabel; readonly tooltip: _ModuleSupport.SeriesTooltip, "context">>; connectMissingData: boolean; } export {};