import { FinancialSeriesDescription } from "./FinancialSeriesDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare abstract class FinancialIndicatorDescription extends FinancialSeriesDescription {
    static $t: Type;
    protected get_type(): string;
    constructor();
    private gg;
    get displayType(): string;
    set displayType(a: string);
    private gb;
    get ignoreFirst(): number;
    set ignoreFirst(a: number);
    private gi;
    get trendLineType(): string;
    set trendLineType(a: string);
    private gh;
    get trendLineBrush(): string;
    set trendLineBrush(a: string);
    private gf;
    get actualTrendLineBrush(): string;
    set actualTrendLineBrush(a: string);
    private f9;
    get trendLineThickness(): number;
    set trendLineThickness(a: number);
    private f7;
    get trendLineDashArray(): number[];
    set trendLineDashArray(a: number[]);
    private gc;
    get trendLinePeriod(): number;
    set trendLinePeriod(a: number);
}
