/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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, Margin, Padding, SeriesLabelsContentArgs } from '../../common/property-types';
import { SeriesDefaultsLabelsTo } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
 * The `to` label configuration of the Chart series.
 */
export declare class SeriesDefaultsLabelsToComponent extends SettingsComponent implements SeriesDefaultsLabelsTo {
    configurationService: ConfigurationService;
    background: string;
    border: Border;
    color: string;
    content: (e: SeriesLabelsContentArgs) => string;
    /**
     * The font style of the `to` labels.
     * @default '12px sans-serif"'
     */
    font: string;
    /**
     * The format of the `to` labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
     * @default '{0}'
     */
    format: string;
    /**
     * The margin of the `to` labels. A numeric value sets all margins.
     * @default 0
     */
    margin: Margin | number;
    /**
     * The padding of the `to` labels. A numeric value sets all paddings.
     * @default 0
     */
    padding: Padding | number;
    /**
     * If set to `true`, the Chart displays the `to` labels of the series.
     * @default false
     */
    visible: boolean;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsLabelsToComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SeriesDefaultsLabelsToComponent, "kendo-chart-series-defaults-labels-to", 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; }; }, {}, never, never, true, never>;
}
