/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { ValueAxisNotes } from '../../common/property-types';
import { PropType } from 'vue';
/**
 * Represents the props of the Kendo UI for Vue ChartValueAxisNotes component.
 */
export interface ChartValueAxisNotesProps extends ValueAxisNotes {
}
/**
 * @hidden
 */
declare const ChartValueAxisNotes: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    dataItems: {
        type: PropType<any[]>;
        default: () => any;
    };
    line: {
        type: PropType<import('../../field-types/note-line.interface').NoteLine>;
        default: () => any;
    };
    position: {
        type: PropType<string>;
        default: () => any;
        validator: (value: string) => any;
    };
    visual: {
        type: PropType<(e: import('../../argument-types/axis-note-visual-args.interface').AxisNoteVisualArgs) => import('@progress/kendo-drawing').Element>;
        default: any;
    };
    icon: {
        type: PropType<import('../../common/property-types').ValueAxisNotesIcon>;
        default: () => any;
    };
    label: {
        type: PropType<import('../../common/property-types').ValueAxisNotesLabel>;
        default: () => any;
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    dataItems: {
        type: PropType<any[]>;
        default: () => any;
    };
    line: {
        type: PropType<import('../../field-types/note-line.interface').NoteLine>;
        default: () => any;
    };
    position: {
        type: PropType<string>;
        default: () => any;
        validator: (value: string) => any;
    };
    visual: {
        type: PropType<(e: import('../../argument-types/axis-note-visual-args.interface').AxisNoteVisualArgs) => import('@progress/kendo-drawing').Element>;
        default: any;
    };
    icon: {
        type: PropType<import('../../common/property-types').ValueAxisNotesIcon>;
        default: () => any;
    };
    label: {
        type: PropType<import('../../common/property-types').ValueAxisNotesLabel>;
        default: () => any;
    };
}>> & Readonly<{}>, {
    line: import('../../field-types/note-line.interface').NoteLine;
    visual: (e: import('../../argument-types/axis-note-visual-args.interface').AxisNoteVisualArgs) => import('@progress/kendo-drawing').Element;
    dataItems: any[];
    label: import('../../common/property-types').ValueAxisNotesLabel;
    icon: import('../../common/property-types').ValueAxisNotesIcon;
    position: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartValueAxisNotes };
