/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Chart } from '@progress/kendo-react-charts'; import { ChartWizardState } from '@progress/kendo-charts'; /** * Represents the `ref` object of the ChartWizard component. **/ export interface ChartWizardHandle { /** * Gets the Chart instance. */ chart: Chart | null; /** * @hidden * * The current state of the ChartWizard. */ state: ChartWizardState; }