import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { MapEvent } from 'ol'; import { ObjectEvent } from 'ol/Object'; import BaseEvent from 'ol/events/Event'; import Rotate, { Options } from 'ol/control/Rotate'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * A button control component to reset rotation to 0. * @name nol-rotate-control * @order 1 */ export declare class NolRotateControlComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolClassName?: string; nolLabel?: string | HTMLElement; nolTipLabel?: string; nolCompassClassName?: string; nolDuration?: number; nolAutoHide?: boolean; nolRender?: ((evt: MapEvent) => void); nolResetNorth?: (() => void); nolTarget?: string | HTMLElement; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): Rotate; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useRotateControl(): NolRotateControlComponent; export declare function useRotateControl(options: InjectOptions & { optional?: false; }): NolRotateControlComponent; export declare function useRotateControl(options: InjectOptions): NolRotateControlComponent | null;