/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { drawing } from '@progress/kendo-drawing';
import { ConfigurationService } from '../../common/configuration.service';
import { NoteLine, NotePosition, SeriesNoteVisualArgs } from '../../common/property-types';
import { SeriesNotes, SeriesNotesIcon, SeriesNotesLabel } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* Represents the Chart series notes configuration
* ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/notes)).
*
* @example
* ```html
*
*
*
*
*
*
* ```
*
* @remarks
* Supported children components are: {@link SeriesNotesIconComponent} and {@link SeriesNotesLabelComponent}.
*/
export declare class SeriesNotesComponent extends SettingsComponent implements SeriesNotes {
configurationService: ConfigurationService;
/**
* Specifies the line configuration for the notes.
*/
line: NoteLine;
/**
* Specifies the position of the notes.
*/
position: NotePosition;
/**
* Specifies a function that creates a custom visual for the notes.
*/
visual: (e: SeriesNoteVisualArgs) => drawing.Element;
/**
* Specifies the icon configuration for the notes.
*/
icon: SeriesNotesIcon;
/**
* Specifies the label configuration for the notes.
*/
label: SeriesNotesLabel;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}