import { Description } from "./Description";
import { ChartSelectionDescription } from "./ChartSelectionDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class SeriesViewerSelectedSeriesItemsChangedEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private m;
    get oldItems(): ChartSelectionDescription[];
    set oldItems(a: ChartSelectionDescription[]);
    private l;
    get newItems(): ChartSelectionDescription[];
    set newItems(a: ChartSelectionDescription[]);
    private k;
    get currentItems(): ChartSelectionDescription[];
    set currentItems(a: ChartSelectionDescription[]);
}
