/**-----------------------------------------------------------------------------------------
* 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 { AxisTitlePosition, Border, Margin, Padding, TitleVisualArgs } from '../../common/property-types';
import { AxisDefaultsTitle } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
 * Represents the configuration of the axis title ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/axes#default-axis-configuration)).
 */
export declare class AxisDefaultsTitleComponent extends SettingsComponent implements AxisDefaultsTitle {
    configurationService: ConfigurationService;
    /**
     * Specifies the background color of the title.
     */
    background: string;
    /**
     * Specifies the border configuration of the title.
     */
    border: Border;
    /**
     * Specifies the text color of the title.
     */
    color: string;
    /**
     * Specifies the font style of the title.
     * @default 'bold 16px sans-serif'
     */
    font: string;
    /**
     * Specifies the margin of the title. A numeric value sets all margins.
     * @default 5
     */
    margin: Margin | number;
    /**
     * Specifies the padding of the title. A numeric value sets all paddings.
     * @default 0
     */
    padding: Padding | number;
    /**
     * Specifies the position of the title.
     * @default 'center'
     */
    position: AxisTitlePosition;
    /**
     * Specifies the rotation angle of the title. By default, the title is not rotated.
     * @default 0
     */
    rotation: number;
    /**
     * Specifies the text content of the title.
     */
    text: string;
    /**
     * Determines whether the Chart displays the axis title. By default, the axis title is visible.
     * @default true
     */
    visible: boolean;
    /**
     * Specifies a `visual` function that customizes the appearance of the title.
     */
    visual: (e: TitleVisualArgs) => drawing.Element;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<AxisDefaultsTitleComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<AxisDefaultsTitleComponent, "kendo-chart-axis-defaults-title", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "font": { "alias": "font"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "position": { "alias": "position"; "required": false; }; "rotation": { "alias": "rotation"; "required": false; }; "text": { "alias": "text"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; }, {}, never, never, true, never>;
}
