import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { StochRSIIndicator } from "./StochRSIIndicator";
/**
 * Represents a IgxDataChartComponent StochRSI indicator series.
 * Default required members: Close
*
* `StochRSIIndicator` or Stochastic Relative Strength IndexI Indicator (SRSI) measures when a security is overbought or oversold within a specified period of time. The values range from 0 to 1. The StochRSI Indicator is calculated by applying the Stochastic Oscillator formula to RelativeStrengthIndexIndicator (RSI) data.
*
* Using this indicator requires setting the `CloseMemberPath`.
*/
export declare class IgcStochRSIIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
    protected createImplementation(): StochRSIIndicator;
    /**
                                 * @hidden
                                 */
    get i(): StochRSIIndicator;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcStochRSIIndicatorComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    /**
     * Gets or sets the moving average period for the current StochRSIIndicator object.
     * The typical, and initial, value for StochRSI periods is 14.
    *
    * ```ts
    * this.series.period = 10;
    * ```
    */
    get period(): number;
    set period(v: number);
}
