/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PanesTitle } from '../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartPaneTitle component ([see example]({% slug panes_chart_charts %})). */ export interface ChartPaneTitleProps extends PanesTitle { } /** * @hidden */ declare const ChartPaneTitle: import('vue').DefineComponent; border: { type: PropType; default: () => any; }; color: PropType; font: PropType; margin: { type: PropType; default: () => any; }; position: { type: PropType; default: () => any; validator: (value: string) => any; }; text: PropType; visible: { type: PropType; default: any; }; visual: { type: PropType<(e: any) => import('@progress/kendo-drawing').Element>; default: any; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; border: { type: PropType; default: () => any; }; color: PropType; font: PropType; margin: { type: PropType; default: () => any; }; position: { type: PropType; default: () => any; validator: (value: string) => any; }; text: PropType; visible: { type: PropType; default: any; }; visual: { type: PropType<(e: any) => import('@progress/kendo-drawing').Element>; default: any; }; }>> & Readonly<{}>, { border: import('../../field-types/border.interface').Border; visible: boolean; visual: (e: any) => import('@progress/kendo-drawing').Element; position: string; margin: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartPaneTitle };