import { IgcSeriesComponent } from "./igc-series-component";
import { TrendLineType } from "igniteui-webcomponents-core";
import { IgcAnnotationLayerComponent } from "./igc-annotation-layer-component";
import { TrendLineLayer } from "./TrendLineLayer";
/**
 * Represents the class of the value overlay. The value overlay is a line or circle representing a value on an axis.
*/
export declare class IgcTrendLineLayerComponent extends IgcAnnotationLayerComponent {
    protected createImplementation(): TrendLineLayer;
    /**
                                 * @hidden
                                 */
    get i(): TrendLineLayer;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcTrendLineLayerComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    get isAnnotationLayer(): boolean;
    get isLineOnly(): boolean;
    /**
     * Gets or sets the name of the series to target this annotation to.
    */
    get targetSeriesName(): string;
    set targetSeriesName(v: string);
    /**
     * Gets or sets the series to target this annotation to.
    */
    get targetSeries(): IgcSeriesComponent;
    set targetSeries(v: IgcSeriesComponent);
    /**
     * Gets the actual series being targeted by this annotation.
    */
    get actualTargetSeries(): IgcSeriesComponent;
    set actualTargetSeries(v: IgcSeriesComponent);
    /**
     * Gets or sets the trend type for the current series object.
    */
    get trendLineType(): TrendLineType;
    set trendLineType(v: TrendLineType);
    /**
     * Gets or sets the trend line period for the target series.
     * The typical, and initial, value for trend line period is 7.
    */
    get trendLinePeriod(): number;
    set trendLinePeriod(v: number);
    get isUsableInLegend(): boolean;
    findByName(name: string): any;
    protected _styling(container: any, component: any, parent?: any): void;
    onApplyTemplate(): void;
    getManagerIdentifier(): string;
}
