import { IgxSeriesComponent } from './igx-series-component';
import { FinancialChartCustomIndicatorArgs as FinancialChartCustomIndicatorArgs_internal } from "./FinancialChartCustomIndicatorArgs";
/**
 * Event arguments for the Financial Chart's custom indicator event.
*/
export declare class IgxFinancialChartCustomIndicatorArgs {
    protected _implementation: any;
    get i(): FinancialChartCustomIndicatorArgs_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    get indicatorInfo(): any;
    /**
 * The Series in context.
*/
    get series(): IgxSeriesComponent;
    set series(v: IgxSeriesComponent);
    /**
     * An integer representing the position of the associated custom indicator in its host.
    */
    get index(): number;
    set index(v: number);
    static ngAcceptInputType_index: number | string;
}
