/**-----------------------------------------------------------------------------------------
* 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 { RangeComponent } from '../base-components';
import * as i0 from "@angular/core";
/**
 * Represents the configuration options for a scale range item of a LinearGauge.
 *
 * @example
 * ```html
 * <kendo-lineargauge>
 *    <kendo-lineargauge-scale>
 *        <kendo-lineargauge-scale-ranges>
 *            @for (range of ranges; track range) {
 *              <kendo-lineargauge-scale-range [from]="range.from" [to]="range.to" [color]="range.color">
 *              </kendo-lineargauge-scale-range>
 *            }
 *          </kendo-lineargauge-scale-ranges>
 *    </kendo-lineargauge-scale>
 * </kendo-lineargauge>
 * ```
 */
export declare class LinearRangeComponent extends RangeComponent {
    constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
    static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangeComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangeComponent, "kendo-lineargauge-scale-range", never, {}, {}, never, never, true, never>;
}
