import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { ObjectEvent } from 'ol/Object'; import FullScreen, { Options } from 'ol/control/FullScreen'; import BaseEvent from 'ol/events/Event'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * Provides a button that when clicked fills up the full screen with the map. * @name nol-full-screen-control * @order 1 */ export declare class NolFullScreenControlComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolClassName?: string; nolLabel?: string | HTMLElement | Text; nolLabelActive?: string | HTMLElement | Text; nolActiveClassName?: string; nolInactiveClassName?: string; nolTipLabel?: string; nolKeys?: boolean; nolTarget?: string | HTMLElement; nolSource?: string | HTMLElement; nolProperties?: Record; nolChange: EventEmitter; nolEnterfullscreen: EventEmitter; nolError: EventEmitter; nolLeavefullscreen: EventEmitter; nolPropertychange: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): FullScreen; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useFullScreenControl(): NolFullScreenControlComponent; export declare function useFullScreenControl(options: InjectOptions & { optional?: false; }): NolFullScreenControlComponent; export declare function useFullScreenControl(options: InjectOptions): NolFullScreenControlComponent | null;