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