import { Description } from "./Description";
import { Type } from "./type";
import { SeriesMatcherDescription } from "./SeriesMatcherDescription";
/**
 * @hidden
 */
export declare class ChartSelectionDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    private static __marshalByValue;
    private static __marshalByValueAlias;
    constructor();
    private n;
    get item(): any;
    set item(a: any);
    private q;
    get seriesRef(): string;
    set seriesRef(a: string);
    private k;
    get matcher(): SeriesMatcherDescription;
    set matcher(a: SeriesMatcherDescription);
}
