import { EventEmitter, InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { NearestDirectionFunction } from 'ol/array'; import { LoadFunction } from 'ol/Tile'; import { ObjectEvent } from 'ol/Object'; import { TileSourceEvent } from 'ol/source/Tile'; import BaseEvent from 'ol/events/Event'; import Google, { Options } from 'ol/source/Google'; import { NolPrefixedOptions, NolSafeAny } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * A tile layer source component that renders tiles from * the Google [Map Tiles API](https://developers.google.com/maps/documentation/tile/overview). * @name nol-google-source * @order 1 */ export declare class NolGoogleSourceComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolKey: string; nolMapType?: string; nolLanguage?: string; nolRegion?: string; nolImageFormat?: string; nolScale?: string; nolHighDpi?: boolean; nolLayerTypes?: string[]; nolOverlay?: boolean; nolStyles?: NolSafeAny[]; nolAttributionsCollapsible?: boolean; nolInterpolate?: boolean; nolCacheSize?: number; nolReprojectionErrorThreshold?: number; nolTileLoadFunction?: LoadFunction; nolWrapX?: boolean; nolTransition?: number; nolZDirection?: number | NearestDirectionFunction; nolProperties?: Record; nolChange: EventEmitter; nolError: EventEmitter; nolPropertychange: EventEmitter; nolTileloadend: EventEmitter; nolTileloaderror: EventEmitter; nolTileloadstart: EventEmitter; private readonly destroyRef; private readonly host; private instance; getInstance(): Google; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useGoogleSource(): NolGoogleSourceComponent; export declare function useGoogleSource(options: InjectOptions & { optional?: false; }): NolGoogleSourceComponent; export declare function useGoogleSource(options: InjectOptions): NolGoogleSourceComponent | null;