import { StrategyBasedIndicator } from "./StrategyBasedIndicator";
import { IndicatorCalculationStrategy } from "./IndicatorCalculationStrategy";
import { Type } from "igniteui-webcomponents-core";
import { DependencyProperty } from "igniteui-webcomponents-core";
import { Series } from "./Series";
/**
 * @hidden
 */
export declare class RateOfChangeAndMomentumIndicator extends StrategyBasedIndicator {
    static $t: Type;
    protected bk(): Series;
    protected get_acg(): IndicatorCalculationStrategy;
    protected get acg(): IndicatorCalculationStrategy;
    protected get_act(): Type;
    protected get act(): Type;
    get ac1(): number;
    set ac1(a: number);
    static readonly ac2: DependencyProperty;
    protected acm(): number;
    acv(a: number): void;
}
