UNPKG

@progress/kendo-vue-charts

Version:
43 lines (42 loc) 1.49 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { NavigatorHint } from '../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartNavigatorHint component. */ export interface ChartNavigatorHintProps extends NavigatorHint { } /** * @hidden */ declare const ChartNavigatorHint: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ content: { type: PropType<(e: any) => string>; default: any; }; format: PropType<string>; visible: { type: PropType<boolean>; default: any; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ content: { type: PropType<(e: any) => string>; default: any; }; format: PropType<string>; visible: { type: PropType<boolean>; default: any; }; }>> & Readonly<{}>, { visible: boolean; content: (e: any) => string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartNavigatorHint };