import { EventEmitter } from '@angular/core'; import { IgxStyleShapeEventArgs } from "igniteui-angular-charts"; import { IgxGeographicShapeSeriesBaseComponent } from "./igx-geographic-shape-series-base-component"; import { GeographicPolylineSeries } from "./GeographicPolylineSeries"; import * as i0 from "@angular/core"; /** * Series class used for displaying multiple polylines, in a geographic context, for datasources which contain multiple lists of points. */ export declare class IgxGeographicPolylineSeriesComponent extends IgxGeographicShapeSeriesBaseComponent { protected createImplementation(): GeographicPolylineSeries; /** * @hidden */ get i(): GeographicPolylineSeries; constructor(); /** * Gets whether the current series shows a polyline shape. */ get isPolyline(): boolean; static ngAcceptInputType_isPolyline: boolean | string; /** * Gets or sets the fill brush. */ get shapeFill(): string; set shapeFill(v: string); /** * Gets or sets the stroke brush. */ get shapeStroke(): string; set shapeStroke(v: string); /** * Gets or sets the stroke thickness. */ get shapeStrokeThickness(): number; set shapeStrokeThickness(v: number); static ngAcceptInputType_shapeStrokeThickness: number | string; /** * Gets or sets the opacity. */ get shapeOpacity(): number; set shapeOpacity(v: number); static ngAcceptInputType_shapeOpacity: number | string; ensureShapeStyle(): void; private _styleShape; get styleShape(): EventEmitter<{ sender: any; args: IgxStyleShapeEventArgs; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }