/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { SeriesDefaultsLabels } from '../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartSeriesDefaultsLabels component ([see example]({% slug series_chart_charts %}#toc-default-series-configuration)). */ export interface ChartSeriesDefaultsLabelsProps extends SeriesDefaultsLabels { } /** * @hidden */ declare const ChartSeriesDefaultsLabels: import('vue').DefineComponent; border: { type: PropType; default: () => any; }; color: PropType; content: { type: PropType<(e: any) => string>; default: any; }; font: PropType; format: PropType; margin: { type: PropType; default: () => any; }; padding: { type: PropType; default: () => any; }; visible: { type: PropType; default: boolean; }; visual: { type: PropType<(e: import('../../argument-types/series-labels-visual-args.interface').SeriesLabelsVisualArgs) => import('@progress/kendo-drawing').Element>; default: any; }; from: { type: PropType; default: () => any; }; to: { type: PropType; default: () => any; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; border: { type: PropType; default: () => any; }; color: PropType; content: { type: PropType<(e: any) => string>; default: any; }; font: PropType; format: PropType; margin: { type: PropType; default: () => any; }; padding: { type: PropType; default: () => any; }; visible: { type: PropType; default: boolean; }; visual: { type: PropType<(e: import('../../argument-types/series-labels-visual-args.interface').SeriesLabelsVisualArgs) => import('@progress/kendo-drawing').Element>; default: any; }; from: { type: PropType; default: () => any; }; to: { type: PropType; default: () => any; }; }>> & Readonly<{}>, { border: import('../../field-types/border.interface').Border; from: import('../../common/property-types').SeriesDefaultsLabelsFrom; to: import('../../common/property-types').SeriesDefaultsLabelsTo; visible: boolean; visual: (e: import('../../argument-types/series-labels-visual-args.interface').SeriesLabelsVisualArgs) => import('@progress/kendo-drawing').Element; content: (e: any) => string; padding: any; margin: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartSeriesDefaultsLabels };