import { InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { Color } from 'ol/color'; import { Size } from 'ol/size.js'; import { DeclutterMode } from 'ol/style/Style'; import Icon, { IconAnchorUnits, IconOrigin, Options } from 'ol/style/Icon'; import { NolPrefixedOptions } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * The component that set icon style for vector features. * @name nol-icon-style * @order 1 */ export declare class NolIconStyleComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolAnchor?: number[]; nolAnchorOrigin?: IconOrigin; nolAnchorXUnits?: IconAnchorUnits; nolAnchorYUnits?: IconAnchorUnits; nolColor?: string | Color; nolCrossOrigin?: string | null; nolImg?: HTMLCanvasElement | HTMLImageElement | ImageBitmap; nolDisplacement?: number[]; nolOpacity?: number; nolWidth?: number; nolHeight?: number; nolScale?: number | Size; nolRotateWithView?: boolean; nolRotation?: number; nolOffset?: number[]; nolOffsetOrigin?: IconOrigin; nolSize?: Size; nolSrc?: string; nolDeclutterMode?: DeclutterMode; private readonly host; private instance; getInstance(): Icon; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useIconStyle(): NolIconStyleComponent; export declare function useIconStyle(options: InjectOptions & { optional?: false; }): NolIconStyleComponent; export declare function useIconStyle(options: InjectOptions): NolIconStyleComponent | null;