import { type AgNightingaleSeriesOptions, _ModuleSupport } from 'ag-charts-community';
import { type DynamicContext } from 'ag-charts-core';
import type { RadialColumnNodeDatum } from '../radial-column/radialColumnSeriesBase';
import { RadialColumnSeriesBase } from '../radial-column/radialColumnSeriesBase';
import { RadialColumnSeriesBaseProperties } from '../radial-column/radialColumnSeriesBaseProperties';
export declare class NightingaleSeries extends RadialColumnSeriesBase<_ModuleSupport.Sector<RadialColumnNodeDatum>> {
    static readonly className = "NightingaleSeries";
    static readonly type: "nightingale";
    properties: RadialColumnSeriesBaseProperties<AgNightingaleSeriesOptions<any, unknown>>;
    constructor(moduleCtx: DynamicContext<_ModuleSupport.ChartRegistry>);
    setZIndex(zIndex: number): boolean;
    protected getStackId(): string;
    protected nodeFactory(): _ModuleSupport.Sector<RadialColumnNodeDatum>;
    protected updateItemPath(node: _ModuleSupport.Sector, datum: RadialColumnNodeDatum, highlight: boolean): void;
    protected getColumnTransitionFunctions(): {
        toFn: (_sect: _ModuleSupport.Sector, datum: RadialColumnNodeDatum, status: _ModuleSupport.NodeUpdateState) => {
            innerRadius: number;
            outerRadius: number;
            startAngle: number;
            endAngle: number;
            clipSector: _ModuleSupport.SectorBox;
        };
        fromFn: (sect: _ModuleSupport.Sector, datum: RadialColumnNodeDatum, status: _ModuleSupport.NodeUpdateState) => {
            innerRadius: number;
            outerRadius: number;
            startAngle: number;
            endAngle: number;
            clipSector: _ModuleSupport.SectorBox;
            phase: "none" | "initial" | "end" | "remove" | "add" | "update" | "trailing";
        };
    };
    protected hasItemStylers(): boolean;
}
