import { InjectOptions, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { Size } from 'ol/size'; import { Fill, Stroke } from 'ol/style'; import { DeclutterMode } from 'ol/style/Style'; import RegularShape, { Options } from 'ol/style/RegularShape'; import { NolPrefixedOptions } from 'ngx-ol-library/core'; import * as i0 from "@angular/core"; /** * The component that set regular shape style for vector features. * @name nol-regular-shape-style * @order 1 */ export declare class NolRegularShapeStyleComponent implements NolPrefixedOptions, OnInit, OnChanges, OnDestroy { nolFill?: Fill; nolPoints: number; nolRadius: number; nolRadius2?: number; nolAngle?: number; nolDisplacement?: number[]; nolStroke?: Stroke; nolRotation?: number; nolRotateWithView?: boolean; nolScale?: number | Size; nolDeclutterMode?: DeclutterMode; private readonly host; private instance; getInstance(): RegularShape; update(): void; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare function useRegularShapeStyle(): NolRegularShapeStyleComponent; export declare function useRegularShapeStyle(options: InjectOptions & { optional?: false; }): NolRegularShapeStyleComponent; export declare function useRegularShapeStyle(options: InjectOptions): NolRegularShapeStyleComponent | null;