/**-----------------------------------------------------------------------------------------
* 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, Margin, Padding, SeriesLabelsContentArgs, SeriesLabelsVisualArgs } from '../../common/property-types';
import { SeriesDefaultsLabels, SeriesDefaultsLabelsFrom, SeriesDefaultsLabelsTo } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
 * Represents the configuration of the Chart series labels.
 *
 * @example
 * ```html
 * <kendo-chart>
 *  <kendo-chart-series-defaults>
 *   <kendo-chart-series-defaults-labels format="c">
 *   </kendo-chart-series-defaults-labels>
 *  </kendo-chart-series-defaults>
 * </kendo-chart>
 * ```
 *
 * @remarks
 * Supported children components are: {@link SeriesDefaultsLabelsFromComponent} and {@link SeriesDefaultsLabelsToComponent}.
 */
export declare class SeriesDefaultsLabelsComponent extends SettingsComponent implements SeriesDefaultsLabels {
    configurationService: ConfigurationService;
    /**
     * Specifies the background color of the labels.
     */
    background: string;
    /**
     * Specifies the border configuration of the labels.
     */
    border: Border;
    /**
     * Specifies the text color of the labels.
     */
    color: string;
    /**
     * Specifies a function that returns the content of the labels.
     */
    content: (e: SeriesLabelsContentArgs) => string;
    /**
     * Specifies the font style of the labels.
     * @default '12px sans-serif'
     */
    font: string;
    /**
     * Specifies the format of the labels. Uses the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
     * @default '{0}'
     */
    format: string;
    /**
     * Specifies the margin of the labels. A numeric value sets all margins.
     * @default 0
     */
    margin: Margin | number;
    /**
     * Specifies the padding of the labels. A numeric value sets all paddings.
     * @default 0
     */
    padding: Padding | number;
    /**
     * Determines whether the Chart displays the series labels.
     * @default false
     */
    visible: boolean;
    /**
     * Specifies a function that creates a custom visual for the labels.
     */
    visual: (e: SeriesLabelsVisualArgs) => drawing.Element;
    /**
     * Specifies the `from` labels configuration.
     */
    from: SeriesDefaultsLabelsFrom;
    /**
     * Specifies the `to` labels configuration.
     */
    to: SeriesDefaultsLabelsTo;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsLabelsComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SeriesDefaultsLabelsComponent, "kendo-chart-series-defaults-labels", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "content": { "alias": "content"; "required": false; }; "font": { "alias": "font"; "required": false; }; "format": { "alias": "format"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; "from": { "alias": "from"; "required": false; }; "to": { "alias": "to"; "required": false; }; }, {}, never, never, true, never>;
}
