import { IndicatorType } from '../../types'; interface IndicatorSelectorProps { value: IndicatorType[]; onChange: (indicators: IndicatorType[]) => void; maxSubPanes?: number; maxMainIndicators?: number; } /** * 指标选择器组件 */ export declare function IndicatorSelector({ value, onChange, maxSubPanes, maxMainIndicators, }: IndicatorSelectorProps): import("react/jsx-runtime").JSX.Element; export {};