import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator";
import { FastStochasticOscillatorIndicator } from "./FastStochasticOscillatorIndicator";
/**
 * Represents a IgxDataChartComponent Fast Stochastic Oscillator indicator series.
 * Default required members: High, Low, Close
*/
export declare class IgrFastStochasticOscillatorIndicator extends IgrStrategyBasedIndicator<IIgrFastStochasticOscillatorIndicatorProps> {
    protected createImplementation(): FastStochasticOscillatorIndicator;
    /**
                                 * @hidden
                                 */
    get i(): FastStochasticOscillatorIndicator;
    constructor(props: IIgrFastStochasticOscillatorIndicatorProps);
    /**
     * Gets or sets the moving average period for the current FastStochasticOscillatorIndicator object.
     * The typical, and initial, value for FastStochasticOscillatorIndicator periods is 14.
    */
    get period(): number;
    set period(v: number);
}
export interface IIgrFastStochasticOscillatorIndicatorProps extends IIgrStrategyBasedIndicatorProps {
    /**
     * Gets or sets the moving average period for the current FastStochasticOscillatorIndicator object.
     * The typical, and initial, value for FastStochasticOscillatorIndicator periods is 14.
    */
    period?: number | string;
}
