/**-----------------------------------------------------------------------------------------
* 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 { AxisNoteVisualArgs, NoteLine, NotePosition } from '../../common/property-types';
import { XAxisNotes, XAxisNotesIcon, XAxisNotesLabel } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* Represents the configuration of the X-axis notes.
* For an example on the basic usage of the `XAxisNotesComponent`,
* refer to the [demo on the `XAxisComponent`](https://www.telerik.com/kendo-angular-ui/components/charts/api/xaxiscomponent)
* or to the documentation about the
* [axis notes](https://www.telerik.com/kendo-angular-ui/components/charts/elements/notes#setting-up-axis-notes).
*
* @example
* ```html
*
*
*
*
*
*
*
*
* ```
*
* @remarks
* Supported children components are: {@link XAxisNotesIconComponent} and {@link XAxisNotesLabelComponent}.
*/
export declare class XAxisNotesComponent extends SettingsComponent implements XAxisNotes {
configurationService: ConfigurationService;
/**
* Specifies the data for the notes.
*/
data: any[];
/**
* Specifies the line configuration of the notes.
*/
line: NoteLine;
/**
* Specifies the position of the notes.
*/
position: NotePosition;
/**
* Specifies a function that returns a custom visual for the notes.
*/
visual: (e: AxisNoteVisualArgs) => drawing.Element;
/**
* Specifies the icon configuration of the notes.
*/
icon: XAxisNotesIcon;
/**
* Specifies the label configuration of the notes.
*/
label: XAxisNotesLabel;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}