/**-----------------------------------------------------------------------------------------
* 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, Margin, Padding, PaneDefaults, PaneDefaultsTitle } from '../common/property-types';
import * as i0 from "@angular/core";
/**
 * Represents the default options for all Chart panes
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/panes#default-settings)).
 *
 * @example
 * ```html
 * <kendo-chart>
 *  <kendo-chart-pane-defaults background="#f0f0f0" [border]="{ color: '#ccc', width: 1 }">
 *   <kendo-chart-pane-defaults-title [visible]="true"></kendo-chart-pane-defaults-title>
 *  </kendo-chart-pane-defaults>
 * </kendo-chart>
 * ```
 *
 * @remarks
 * Supported children components are: {@link PaneDefaultsTitleComponent}.
 */
export declare class PaneDefaultsComponent extends SettingsComponent implements PaneDefaults {
    configurationService: ConfigurationService;
    /**
     * Specifies the background color of the pane.
     */
    background: string;
    /**
     * Specifies the border configuration of the pane.
     */
    border: Border;
    /**
     * Determines whether the pane clips its content.
     */
    clip: boolean;
    /**
     * Specifies the height of the pane.
     */
    height: number;
    /**
     * Specifies the margin of the pane. A numeric value sets all margins.
     * @default 0
     */
    margin: Margin | number;
    /**
     * Specifies the padding of the pane. A numeric value sets all paddings.
     * @default 0
     */
    padding: Padding | number;
    /**
     * Specifies the title configuration of the pane.
     */
    title: PaneDefaultsTitle;
    constructor(configurationService: ConfigurationService);
    static ɵfac: i0.ɵɵFactoryDeclaration<PaneDefaultsComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<PaneDefaultsComponent, "kendo-chart-pane-defaults", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "clip": { "alias": "clip"; "required": false; }; "height": { "alias": "height"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
}
