/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { CollectionChangesService, ConfigurationService } from '../services'; import { CollectionItemComponent } from '../base-components'; import { RadialPointer, Cap } from '../types'; import * as i0 from "@angular/core"; /** * Represents the configuration options for a pointer in the RadialGauge. * * @example * ```html * * * * * * * ``` */ export declare class RadialPointerComponent extends CollectionItemComponent implements RadialPointer { /** * Configures the pointer cap. */ cap?: Cap; /** * Specifies the color of the pointer. */ color?: string; /** * Sets the length of the pointer as a percentage of the scale radius. */ length?: number; /** * Sets the value of the pointer. */ value?: number; constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }