import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import { Extent } from 'ol/extent'; import BaseEvent from 'ol/events/Event'; import ZoomToExtent, { Options } from 'ol/control/ZoomToExtent'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * A button control which, when pressed, changes the map view to a specific extent. * @name nol-zoom-to-extent-control * @order 1 */ export declare class NolZoomToExtentControlComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolClassName?: string; nolTarget?: string | HTMLElement; nolLabel?: string | HTMLElement; nolTipLabel?: string; nolExtent?: Extent; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): ZoomToExtent; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useZoomToExtentControl(): NolZoomToExtentControlComponent; export declare function useZoomToExtentControl(options: InjectOptions & { optional?: false; }): NolZoomToExtentControlComponent; export declare function useZoomToExtentControl(options: InjectOptions): NolZoomToExtentControlComponent | null;