/**-----------------------------------------------------------------------------------------
* 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
*
*
*
*
*
* ```
*
* @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;
static ɵcmp: i0.ɵɵComponentDeclaration;
}