import { IgcStyle } from "igniteui-webcomponents-core";
import { IgcShapeSeriesBaseComponent } from "./igc-shape-series-base-component";
import { ScatterPolylineSeries } from "./ScatterPolylineSeries";
/**
 * Series class used for displaying multiple polylines for datasources which contain multiple lists of points.
*/
export declare class IgcScatterPolylineSeriesComponent extends IgcShapeSeriesBaseComponent {
    protected createImplementation(): ScatterPolylineSeries;
    /**
                                 * @hidden
                                 */
    get i(): ScatterPolylineSeries;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcScatterPolylineSeriesComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    /**
     * Gets whether the current series shows a polyline shape.
    */
    get isPolyline(): boolean;
    /**
     * The default style to apply to all Shapes in the series.
    */
    get shapeStyle(): IgcStyle;
    set shapeStyle(v: IgcStyle);
    findByName(name: string): any;
}
