import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { MapEvent } from 'ol'; import { ObjectEvent } from 'ol/Object'; import Attribution, { Options } from 'ol/control/Attribution'; import BaseEvent from 'ol/events/Event'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Control component to show all the attributions associated with the layer * sources in the map. * @name nol-attribution-control * @order 1 */ export declare class NolAttributionControlComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolClassName?: string; nolTarget?: string | HTMLElement; nolCollapsible?: boolean; nolCollapsed?: boolean; nolTipLabel?: string; nolLabel?: string | HTMLElement; nolExpandClassName?: string; nolCollapseLabel?: string | HTMLElement; nolCollapseClassName?: string; nolRender?: ((event: MapEvent) => void); nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): Attribution; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useAttributionControl(): NolAttributionControlComponent; export declare function useAttributionControl(options: InjectOptions & { optional?: false; }): NolAttributionControlComponent; export declare function useAttributionControl(options: InjectOptions): NolAttributionControlComponent | null;