import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { ChaikinVolatilityIndicator } from "./ChaikinVolatilityIndicator";
/**
 * Represents a IgxDataChartComponent Chaikin Volatility indicator series.
 * The ChaikinVolatility indicator attempts to show volatility by displaying the spread between
 * the high and low values.
 * Default required members: High, Low
*
* `ChaikinVolatilityIndicator` class specify the series as Chaikin Volitility Indicator series.
*/
export declare class IgcChaikinVolatilityIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
    protected createImplementation(): ChaikinVolatilityIndicator;
    /**
                                 * @hidden
                                 */
    get i(): ChaikinVolatilityIndicator;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcChaikinVolatilityIndicatorComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    /**
     * Gets or sets the moving average period for the current ChaikinVolatilityIndicator object.
     * The typical, and initial, value for ChaikinVolatilityIndicator periods is 10.
    *
    * Set the `Period` property if you wish to change the moving average period for the indicator.
    *
    * ```ts
    * this.series.longPeriod = 30;
    * ```
    */
    get period(): number;
    set period(v: number);
}
