/**-----------------------------------------------------------------------------------------
* 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
 * <kendo-radialgauge>
 *    <kendo-radialgauge-scale [startAngle]="0" [endAngle]="180">
 *    </kendo-radialgauge-scale>
 * </kendo-radialgauge>
 * ```
 *
 * @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<RadialScaleComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<RadialScaleComponent, "kendo-radialgauge-scale", never, { "labels": { "alias": "labels"; "required": false; }; "rangeDistance": { "alias": "rangeDistance"; "required": false; }; "ranges": { "alias": "ranges"; "required": false; }; "startAngle": { "alias": "startAngle"; "required": false; }; "endAngle": { "alias": "endAngle"; "required": false; }; }, {}, never, never, true, never>;
}
