/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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 { LinearScale, Line, Range } from '../types';
import * as i0 from "@angular/core";
/**
 * The configuration options for the scale of the LinearGauge
 * ([see example]({% slug scaleoptions_lineargauge %})).
 */
export declare class LinearScaleComponent extends ScaleComponent implements LinearScale {
    protected configurationService: ConfigurationService;
    line?: Line;
    ranges?: Range[];
    mirror?: boolean;
    vertical?: boolean;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<LinearScaleComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<LinearScaleComponent, "kendo-lineargauge-scale", never, { "line": { "alias": "line"; "required": false; }; "ranges": { "alias": "ranges"; "required": false; }; "mirror": { "alias": "mirror"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, never, true, never>;
}
