/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { drawing } from '@progress/kendo-drawing';
import { ConfigurationService } from '../../common/configuration.service';
import { Border, HighlightLine, HighlightToggleArgs, HighlightVisualArgs, MarkersHighlight } from '../../common/property-types';
import { SeriesHighlight } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
 * Represents the Chart series highlighting configuration options.
 */
export declare class SeriesHighlightComponent extends SettingsComponent implements SeriesHighlight {
    configurationService: ConfigurationService;
    /**
     * Specifies the border configuration of the highlight.
     */
    border: Border;
    /**
     * Specifies the color of the highlight.
     */
    color: string;
    /**
     * Specifies the line configuration of the highlight.
     */
    line: HighlightLine;
    /**
     * Specifies the markers configuration of the highlight.
     */
    markers: MarkersHighlight;
    /**
     * Specifies the opacity of the highlight.
     */
    opacity: number;
    /**
     * Specifies a function that handles the highlight toggle event.
     */
    toggle: (e: HighlightToggleArgs) => void;
    /**
     * Determines whether the Chart highlights the series when the user hovers over it with the mouse.
     * @default true
     */
    visible: boolean;
    /**
     * Specifies a function that creates a custom visual for the highlight.
     */
    visual: (e: HighlightVisualArgs) => drawing.Element;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<SeriesHighlightComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SeriesHighlightComponent, "kendo-chart-series-item-highlight", never, { "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "line": { "alias": "line"; "required": false; }; "markers": { "alias": "markers"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; }, {}, never, never, true, never>;
}
