import { CategorySeriesDescription } from "./CategorySeriesDescription";
import { StackedFragmentSeriesDescription } from "./StackedFragmentSeriesDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare abstract class StackedSeriesBaseDescription extends CategorySeriesDescription {
    static $t: Type;
    protected get_type(): string;
    constructor();
    private d3;
    get series(): StackedFragmentSeriesDescription[];
    set series(a: StackedFragmentSeriesDescription[]);
    private d5;
    get autoGenerateSeries(): boolean;
    set autoGenerateSeries(a: boolean);
    private d6;
    get reverseLegendOrder(): boolean;
    set reverseLegendOrder(a: boolean);
    private d9;
    get seriesCreatedRef(): string;
    set seriesCreatedRef(a: string);
}
