import { KlineWithIndicators, PaneConfig } from '../../types'; interface SubPaneTitleProps { panes: PaneConfig[]; data: KlineWithIndicators[]; hoverIndex?: number | null; containerHeight: number; } /** * 副图标题组件 * 显示在每个副图的左上角 */ export declare function SubPaneTitle({ panes, data, hoverIndex, containerHeight }: SubPaneTitleProps): import("react/jsx-runtime").JSX.Element | null; export {};