import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { AverageDirectionalIndexIndicator } from "./AverageDirectionalIndexIndicator";
/**
 * Represents a IgxDataChartComponent Average Directional indicator series.
 * Default required members: High, Low, Close
*
* You can use the `AverageDirectionalIndexIndicator` to measures trend strength without regard to trend direction.
*/
export declare class IgcAverageDirectionalIndexIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
    protected createImplementation(): AverageDirectionalIndexIndicator;
    /**
                                 * @hidden
                                 */
    get i(): AverageDirectionalIndexIndicator;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcAverageDirectionalIndexIndicatorComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    /**
     * Gets or sets the moving average period for the current AverageDirectionalIndexIndicator object.
     * The typical, and initial, value for AverageDirectionalIndexIndicator periods is 14.
    *
    * You can use the `Period` to set the moving average.
    *
    * ```ts
    * this.series.period = 14;
    * ```
    */
    get period(): number;
    set period(v: number);
}
