/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { BaseChartProps } from './BaseChartProps.js';
import { NavigatorFilterEvent } from './common/events.js';
/**
 * Represents the props of the KendoReact StockChart component.
 */
export interface StockChartProps extends Omit<BaseChartProps, 'drilldownState' | 'onDrilldown'> {
    /**
     * Specifies whether the StockChart will perform full or partial redraw upon re-render. The partial redraw is required when the `onNavigatorFilter` event is handled and the data for the main panes is limited to a specific set. The default value is `false`.
     */
    partialRedraw?: boolean;
    /**
     * Fires when the navigator range is changed.
     */
    onNavigatorFilter?: (event: NavigatorFilterEvent) => void;
    /**
     * @hidden
     */
    children?: React.ReactNode;
}
