import { IgxSeriesLayerPropertyOverlayCollection } from "./igx-series-layer-property-overlay-collection";
import { SeriesLayer as SeriesLayer_internal } from "./SeriesLayer";
/**
 * Represents an axis annotation
*/
export declare class IgxSeriesLayer {
    protected createImplementation(): SeriesLayer_internal;
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): SeriesLayer_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    get transitionOutIsInProgress(): boolean;
    static ngAcceptInputType_transitionOutIsInProgress: boolean | string;
    /**
     * Gets or sets the ZIndex to use for layering the series layers.
    */
    get zIndex(): number;
    set zIndex(v: number);
    static ngAcceptInputType_zIndex: number | string;
    private _propertyOverlays;
    /**
     * Gets the current extra layers for the series.
    */
    get propertyOverlays(): IgxSeriesLayerPropertyOverlayCollection;
    set propertyOverlays(v: IgxSeriesLayerPropertyOverlayCollection);
    static ngAcceptInputType_propertyOverlays: IgxSeriesLayerPropertyOverlayCollection | string;
    findByName(name: string): any;
    playTransitionOutAndRemove(): void;
    playTransitionIn(): void;
    protected _zoneRunner: (act: () => void) => void;
    protected _runInZone(act: () => void): void;
}
