/**-----------------------------------------------------------------------------------------
* 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 { NoteLine, NotePosition, SeriesNoteVisualArgs } from '../../common/property-types';
import { SeriesNotesIcon } from './notes.icon.interface';
import { SeriesNotesLabel } from './notes.label.interface';
/**
 * Represents the configuration options of the series notes.
 */
export interface SeriesNotes {
    /**
     * Specifies the line of the series notes.
     */
    line?: NoteLine;
    /**
     * Specifies the position of the series note.
     */
    position?: NotePosition;
    /**
     * Specifies a function for creating a custom visual for the notes.
     */
    visual?: (e: SeriesNoteVisualArgs) => drawing.Element;
    /**
     * Specifies the icon of the notes.
     */
    icon?: SeriesNotesIcon;
    /**
     * Specifies the label of the notes.
     */
    label?: SeriesNotesLabel;
}
