import { Description } from "./Description";
import { RectDescription } from "./RectDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class SeriesViewerManipulationEventArgsDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private p;
    get isZoomPan(): boolean;
    set isZoomPan(a: boolean);
    private o;
    get isDragZoom(): boolean;
    set isDragZoom(a: boolean);
    private m;
    get isDragSelect(): boolean;
    set isDragSelect(a: boolean);
    private k;
    get dragSelectRectangle(): RectDescription;
    set dragSelectRectangle(a: RectDescription);
    private n;
    get isDragSelectCancelled(): boolean;
    set isDragSelectCancelled(a: boolean);
}
