import { IgxSeriesComponent } from "./igx-series-component";
import { IgxSeriesViewerComponent } from "./igx-series-viewer-component";
import { ChartCursorEventArgs as ChartCursorEventArgs_internal } from "./ChartCursorEventArgs";
/**
 * Provides data for IgxDataChartComponent mouse button related events.
*/
export declare class IgxChartCursorEventArgs {
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): ChartCursorEventArgs_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets the ItemsSource item associated with the current event.
    */
    get item(): any;
    set item(v: any);
    /**
     * Gets the series associated with the current event.
    */
    get series(): IgxSeriesComponent;
    set series(v: IgxSeriesComponent);
    /**
     * Gets the Chart associated with the current event.
    */
    get seriesViewer(): IgxSeriesViewerComponent;
    set seriesViewer(v: IgxSeriesViewerComponent);
    /**
     * Provides a human readable expresion of the event arguments.
    
    */
    toString(): string;
}
