/**-----------------------------------------------------------------------------------------
* 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 { SettingsComponent } from '../../common/settings.component';
import { Border, Padding } from '../../common/property-types';
import { YAxisCrosshairTooltip } from '../../common/property-types';
import * as i0 from "@angular/core";
/**
 * Represents the configuration options of the crosshair tooltip in the Y axis.
 * The crosshair tooltip is displayed when the `visible` option is set to `true`.
 */
export declare class YAxisCrosshairTooltipComponent extends SettingsComponent implements YAxisCrosshairTooltip {
    configurationService: ConfigurationService;
    /**
     * Specifies the background color of the tooltip.
     */
    background: string;
    /**
     * Specifies the border configuration of the tooltip.
     */
    border: Border;
    /**
     * Specifies the text color of the tooltip.
     */
    color: string;
    /**
     * Specifies the font style of the tooltip.
     */
    font: string;
    /**
     * Specifies the format of the tooltip.
     */
    format: string;
    /**
     * Specifies the padding of the tooltip. A numeric value sets all paddings.
     */
    padding: Padding | number;
    /**
     * Determines whether the tooltip is visible.
     */
    visible: boolean;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<YAxisCrosshairTooltipComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<YAxisCrosshairTooltipComponent, "kendo-chart-y-axis-item-crosshair-tooltip", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "font": { "alias": "font"; "required": false; }; "format": { "alias": "format"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, true, never>;
}
