import { StrategyBasedIndicator } from "./StrategyBasedIndicator";
import { IndicatorCalculationStrategy } from "./IndicatorCalculationStrategy";
import { Type, IList$1 } from "igniteui-react-core";
import { FinancialEventArgs } from "./FinancialEventArgs";
import { Series } from "./Series";
/**
 * @hidden
 */
export declare class CustomIndicator extends StrategyBasedIndicator {
    static $t: Type;
    protected bk(): Series;
    protected get_ach(): IndicatorCalculationStrategy;
    protected get ach(): IndicatorCalculationStrategy;
    protected get_acu(): Type;
    protected get acu(): Type;
    protected abt(a: number, b: number): IList$1<string>;
    private ac3;
    get indicator(): (sender: any, e: FinancialEventArgs) => void;
    set indicator(a: (sender: any, e: FinancialEventArgs) => void);
    private ac2;
    get basedOnColumns(): (sender: any, e: FinancialEventArgs) => void;
    set basedOnColumns(a: (sender: any, e: FinancialEventArgs) => void);
    protected abq(a: number, b: number): boolean;
}
