/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { CollectionItemComponent } from '../common/collection-item.component';
import { CollectionService } from '../common/collection.service';
import { ConfigurationService } from '../common/configuration.service';
import { Border, Margin, Padding } from '../common/property-types';
import { Pane, PanesTitle } from '../common/property-types';
import * as i0 from "@angular/core";
/**
 * Represents the Kendo UI for Angular Chart Pane component.
 *
 * @example
 * ```html
 * <kendo-chart>
 *   <kendo-chart-panes>
 *     <kendo-chart-pane
 *         name="top"
 *         background="pink"
 *         [border]="{ color: 'black', dashType: 'dash', width: 2 }">
 *     </kendo-chart-pane>
 *   </kendo-chart-panes>
 * </kendo-chart>
 * ```
 *
 * @remarks
 * Supported children components are: {@link PanesTitleComponent}.
 */
export declare class PaneComponent extends CollectionItemComponent implements Pane {
    protected configurationService: ConfigurationService;
    protected collectionService: CollectionService;
    /**
     * Specifies the background color of the pane.
     */
    background: string;
    /**
     * Specifies the border configuration of the pane.
     */
    border: Border;
    /**
     * Determines whether to clip the content of the pane to its boundaries.
     */
    clip: boolean;
    /**
     * Specifies the height of the pane in pixels.
     */
    height: number;
    /**
     * Specifies the margin of the pane. A numeric value sets all margins.
     * @default 0
     */
    margin: Margin | number;
    /**
     * Specifies the name of the pane.
     */
    name: string;
    /**
     * 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: string | PanesTitle;
    constructor(configurationService: ConfigurationService, collectionService: CollectionService);
    static ɵfac: i0.ɵɵFactoryDeclaration<PaneComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<PaneComponent, "kendo-chart-pane, kendo-chart-panes-item", 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; }; "name": { "alias": "name"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
}
