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 ge;
    get series(): StackedFragmentSeriesDescription[];
    set series(a: StackedFragmentSeriesDescription[]);
    private gg;
    get autoGenerateSeries(): boolean;
    set autoGenerateSeries(a: boolean);
    private gh;
    get reverseLegendOrder(): boolean;
    set reverseLegendOrder(a: boolean);
    private gk;
    get seriesCreatedRef(): string;
    set seriesCreatedRef(a: string);
}
