/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ScaleComponent } from '../base-components';
import { ConfigurationService } from '../services';
import { RadialScale, RadialLabels, Range } from '../types';
import * as i0 from "@angular/core";
/**
* Represents the configuration options for the scale of a RadialGauge
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge/scale-options)).
*
* @example
* ```html
*
*
*
*
* ```
*
* @remarks
* Supported children components are: {@link RadialLabelsComponent}, {@link RadialRangesComponent}
*/
export declare class RadialScaleComponent extends ScaleComponent implements RadialScale {
protected configurationService: ConfigurationService;
/**
* Configures the scale labels.
*/
labels?: RadialLabels;
/**
* Specifies the distance between the scale ranges and the ticks.
*/
rangeDistance?: number;
/**
* Sets the ranges of the scale.
*/
ranges?: Range[];
/**
* Specifies the start angle of the Gauge in degrees.
*/
startAngle?: number;
/**
* Specifies the end angle of the Gauge in degrees.
*/
endAngle?: number;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}