/**-----------------------------------------------------------------------------------------
* 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, Padding } from '../../common/property-types';
import { SeriesDefaultsTooltip } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
 * Represents the configuration options of the Chart series tooltip.
 */
export declare class SeriesDefaultsTooltipComponent extends SettingsComponent implements SeriesDefaultsTooltip {
    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 tooltip font.
     * @default '12px sans serif'
     */
    font: string;
    /**
     * Specifies the format of the tooltip.
     */
    format: string;
    /**
     * Specifies the padding of the tooltip. A numeric value sets all paddings.
     * @default 0
     */
    padding: Padding | number;
    /**
     * Determines whether the Chart displays the series tooltip.
     * @default false
     */
    visible: boolean;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsTooltipComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SeriesDefaultsTooltipComponent, "kendo-chart-series-defaults-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>;
}
