import { IgPoint } from "igniteui-react-core";
import { DomainChartPlotAreaPointerEventArgs as DomainChartPlotAreaPointerEventArgs_internal } from "./DomainChartPlotAreaPointerEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Represents event arguments for chart's SeriesAdded and SeriesRemoved events
*/
export declare class IgrDomainChartPlotAreaPointerEventArgs {
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): DomainChartPlotAreaPointerEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets the pointer position relative to the plot area.
    */
    get plotAreaPosition(): IgPoint;
    set plotAreaPosition(v: IgPoint);
    /**
     * Gets the mouse position relative to the chart.
    */
    get chartPosition(): IgPoint;
}
