/** * 评价指标选择器 */ export declare const EvaluationIndicatorsSelect: ({ from, value: _value, onChange, visible, onCancel, onOk, }: { value?: number[]; onChange?: (v: typeof _value) => void; /** * 目前只实现了来自 dashboard 的 */ from?: "dashboard"; visible?: boolean; onCancel?: () => void; onOk?: () => void; }) => import("react/jsx-runtime").JSX.Element;