import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { Coordinate } from 'ol/coordinate'; import { LineString } 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"; /** * Linestring geometry component. * @name nol-line-string-geometry * @order 1 */ export declare class NolLineStringGeometryComponent implements OnInit, OnChanges, OnDestroy { nolCoordinates: Coordinate[] | number[]; nolLayout?: GeometryLayout; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): LineString; ngOnInit(): void; ngOnChanges({ nolCoordinates, nolProperties }: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function injectLineStringGeometry(): NolLineStringGeometryComponent; export declare function injectLineStringGeometry(options: InjectOptions & { optional?: false; }): NolLineStringGeometryComponent; export declare function injectLineStringGeometry(options: InjectOptions): NolLineStringGeometryComponent | null;