/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { QueryList } from '@angular/core'; import { CollectionComponent, CollectionItemComponent } from '../base-components'; import { CollectionChangesService, ConfigurationService } from '../services'; import * as i0 from "@angular/core"; /** * Represents a collection of one or more RadialGauge pointers * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge/multiple-pointers)). * * Use this component to group multiple pointer components within a RadialGauge. * Each pointer displays a specific value on the gauge. * * @example * ```ts * import { Component } from '@angular/core'; * * @Component({ * selector: 'my-app', * template: ` * * * @for (pointer of pointers; track pointer) { * * * } * * * ` * }) * export class AppComponent { * public pointers: any[] = [{ * value: 10, * color: '#ffd246' * }, { * value: 20, * color: '#28b4c8' * }, { * value: 30, * color: '#78d237' * }]; * } * ``` * * @remarks * Supported children components are: {@link RadialPointerComponent} */ export declare class RadialPointersComponent extends CollectionComponent { children: QueryList; constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }