/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { CircularGaugeCenterTemplateDirective } from './center-template.directive'; import { ArcGaugeComponent } from '../arc-gauge/arc-gauge.component'; import { CircularGaugeScale } from '../types'; import * as i0 from "@angular/core"; /** * Represents the [Kendo UI CircularGauge component for Angular](https://www.telerik.com/kendo-angular-ui/components/gauges/circulargauge). * * @example * ```ts * import { Component } from '@angular/core'; * * _@Component({ * selector: 'my-app', * template: ` * * * {{ value }}% * * * ` * }) * class AppComponent { * public value: number = 10; * } * ``` * * @remarks * Supported children components are: {@link CircularGaugeScaleComponent}, {@link CircularGaugeLabelsComponent}, {@link CircularGaugeAreaComponent}. */ export declare class CircularGaugeComponent extends ArcGaugeComponent { /** * Specifies the scale options of the Gauge. */ scale: CircularGaugeScale; centerTemplate: CircularGaugeCenterTemplateDirective; protected createInstance(element: any, options: any, theme: any, context: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }