/**----------------------------------------------------------------------------------------- * 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 { SankeyLabelDefaults, SankeyOffset } from './api-types'; import { Border, Padding } from '../common/property-types'; import * as i0 from "@angular/core"; /** * Represents the configuration options of the Sankey labels * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/sankey/customization#customizing-the-sankey-diagram-elements)). */ export declare class SankeyLabelsComponent extends SettingsComponent implements SankeyLabelDefaults { configurationService: ConfigurationService; visible?: boolean; font?: string; color?: string; align?: 'left' | 'right' | 'center'; position?: 'inside' | 'before' | 'after'; padding?: number | Padding; margin?: { left?: number; right?: number; }; border?: Border; offset?: SankeyOffset; stroke?: { color?: string; width?: number; lineJoin?: 'round' | 'bevel' | 'miter'; }; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }