/**-----------------------------------------------------------------------------------------
* 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
 * <kendo-chart
 *   <kendo-chart-series>
 *     <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
 *       <kendo-chart-series-item-notes [icon]="{type: 'square'}"> </kendo-chart-series-item-notes>
 *     </kendo-chart-series-item>
 *   </kendo-chart-series>
 * </kendo-chart>
 * ```
 *
 * @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<SeriesNotesComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SeriesNotesComponent, "kendo-chart-series-item-notes", never, { "line": { "alias": "line"; "required": false; }; "position": { "alias": "position"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, true, never>;
}
