import { KlineWithIndicators, IndicatorType, ThemeConfig } from '../../types'; interface IndicatorDisplayProps { data: KlineWithIndicators[]; indicators: IndicatorType[]; hoverIndex?: number | null; theme: ThemeConfig; } /** * 主图指标数值显示组件 * 支持 MA、BOLL、SAR、KC 指标 */ export declare function IndicatorDisplay({ data, indicators, hoverIndex, theme }: IndicatorDisplayProps): import("react/jsx-runtime").JSX.Element | null; export {};