import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { Coordinate } from 'ol/coordinate'; import { LineString, MultiLineString } from 'ol/geom'; import { GeometryLayout } from 'ol/geom/Geometry'; import BaseEvent from 'ol/events/Event'; import { NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Multi-linestring geometry component. * @name nol-multi-line-string-geometry * @order 1 */ export declare class NolMultiLineStringGeometryComponent implements OnInit, OnChanges, OnDestroy { nolCoordinates: (Coordinate[] | LineString)[] | number[]; nolLayout?: GeometryLayout; nolEnds?: number[]; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly destroyRef; private readonly host; private readonly lineStrings; private initialCoordinates; private instance; getInstance(): MultiLineString; changed(): void; addLineString(lineString: LineString): number; removeLineString(lineString: LineString): LineString | undefined; ngOnInit(): void; ngOnChanges({ nolCoordinates, nolProperties }: SimpleChanges): void; ngOnDestroy(): void; private setCoordinates; private checkEndsAndLayout; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function injectMultiLineStringGeometry(): NolMultiLineStringGeometryComponent; export declare function injectMultiLineStringGeometry(options: InjectOptions & { optional?: false; }): NolMultiLineStringGeometryComponent; export declare function injectMultiLineStringGeometry(options: InjectOptions): NolMultiLineStringGeometryComponent | null;