/**-----------------------------------------------------------------------------------------
* 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, SeriesNoteVisualArgs } from '../../common/property-types';
import { SeriesDefaultsNotes, SeriesDefaultsNotesIcon, SeriesDefaultsNotesLabel } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* Represents the configuration of the [`seriesDefaults`](https://www.telerik.com/kendo-angular-ui/components/charts/api/seriesdefaultscomponent) notes.
*
* @example
* ```html
*
*
*
*
*
*
* ```
*
* @remarks
* Supported children components are: {@link SeriesDefaultsNotesIconComponent} and {@link SeriesDefaultsNotesLabelComponent}.
*/
export declare class SeriesDefaultsNotesComponent extends SettingsComponent implements SeriesDefaultsNotes {
configurationService: ConfigurationService;
/**
* Specifies the line configuration for the notes.
*/
line: NoteLine;
/**
* Specifies a function that creates a custom visual for the notes.
*/
visual: (e: SeriesNoteVisualArgs) => drawing.Element;
/**
* Specifies the icon configuration for the notes.
*/
icon: SeriesDefaultsNotesIcon;
/**
* Specifies the label configuration for the notes.
*/
label: SeriesDefaultsNotesLabel;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}