/**----------------------------------------------------------------------------------------- * 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 { Border, Margin, Padding } from '../common/property-types'; import { Title } from '../common/property-types'; import { SettingsComponent } from '../common/settings.component'; import * as i0 from "@angular/core"; /** * Represents the configuration options of the Sankey title or text * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/sankey/elements/title)). * * @example * ```html * * * ... * * ``` */ export declare class SankeyTitleComponent extends SettingsComponent implements Title { configurationService: ConfigurationService; /** * Sets the alignment of the title. * Use `center` for middle alignment, `left` for left alignment, or `right` for right alignment. * * @default 'center' */ align: 'center' | 'left' | 'right'; /** * Sets the background color of the title. Accepts a valid CSS color string, including HEX and RGB. * * @default 'white' */ background: string; border: Border; color: string; /** * Sets the font of the title. * * @default '16px sans-serif' */ font: string; margin: Margin | number; /** * Sets the padding of the title. A numeric value sets all paddings. * * @default 5 */ padding: Padding | number; /** * Sets the position of the title. * Use `bottom` to place the title at the bottom or `top` to place it at the top. * * @default 'top' */ position: 'top' | 'bottom'; text: string; description: string; /** * Determines if the Sankey displays the title. * * @default true */ visible: boolean; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }