import { IgRect } from "igniteui-angular-core";
import { SeriesViewerManipulationEventArgs as SeriesViewerManipulationEventArgs_internal } from "./SeriesViewerManipulationEventArgs";
export declare class IgxSeriesViewerManipulationEventArgs {
    protected createImplementation(): SeriesViewerManipulationEventArgs_internal;
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): SeriesViewerManipulationEventArgs_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    get isZoomPan(): boolean;
    set isZoomPan(v: boolean);
    static ngAcceptInputType_isZoomPan: boolean | string;
    get isDragZoom(): boolean;
    set isDragZoom(v: boolean);
    static ngAcceptInputType_isDragZoom: boolean | string;
    get isDragSelect(): boolean;
    set isDragSelect(v: boolean);
    static ngAcceptInputType_isDragSelect: boolean | string;
    get dragSelectRectangle(): IgRect;
    set dragSelectRectangle(v: IgRect);
    static ngAcceptInputType_dragSelectRectangle: IgRect | string;
    get isDragSelectCancelled(): boolean;
    set isDragSelectCancelled(v: boolean);
    static ngAcceptInputType_isDragSelectCancelled: boolean | string;
}
