import { IgrSeries } from "./igr-series";
import { CalloutSeriesSelectingEventArgs as CalloutSeriesSelectingEventArgs_internal } from "./CalloutSeriesSelectingEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Represents event arguments for selecting callout layer
*/
export declare class IgrCalloutSeriesSelectingEventArgs {
    protected createImplementation(): CalloutSeriesSelectingEventArgs_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): CalloutSeriesSelectingEventArgs_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets data X-value associated with callout layer
    */
    get xValue(): any;
    set xValue(v: any);
    /**
     * Gets data Y-value associated with callout layer
    */
    get yValue(): any;
    set yValue(v: any);
    /**
     * Gets data item associated with callout layer
    */
    get item(): any;
    set item(v: any);
    /**
     * Gets or sets series object associated with callout layer
    */
    get series(): IgrSeries;
    set series(v: IgrSeries);
    /**
     * Gets or sets series name associated with callout layer
    */
    get seriesName(): string;
    set seriesName(v: string);
}
