/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ConfigurationService } from '../../common/configuration.service';
import { Border, MarkerType } from '../../common/property-types';
import { SeriesExtremes } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
 * Represents the configuration of the Chart series extremes.
 * Applies to extreme outliers.
 * For more information, refer to the [`series.extremes`](https://www.telerik.com/kendo-angular-ui/components/charts/api/seriesitemcomponent#extremes) option.
 */
export declare class SeriesExtremesComponent extends SettingsComponent implements SeriesExtremes {
    configurationService: ConfigurationService;
    /**
     * Specifies the background color of the extremes.
     */
    background: string;
    /**
     * Specifies the border configuration of the extremes.
     */
    border: Border;
    /**
     * Specifies the rotation angle of the extremes.
     */
    rotation: number;
    /**
     * Specifies the extremes size in pixels.
     * @default 6
     */
    size: number;
    /**
     * Specifies the shape of the series extremes.
     * @default 'circle'
     */
    type: MarkerType;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<SeriesExtremesComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SeriesExtremesComponent, "kendo-chart-series-item-extremes", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "rotation": { "alias": "rotation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
}
