import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { IComponent } from '@/common/types'; export interface SelectComponentProps extends Partial { dataRef?: React.MutableRefObject; valueField?: string; afterLoad?: (components: IComponent[]) => void; flat?: boolean; projectId?: string; extraOptions?: IComponent[]; ruleIds?: string[]; selected?: string[]; /** 默认选中的项 仅首次装载的使用 */ defaultSelectedIds?: string[]; fieldId?: string; } declare const SelectComponent: React.FC; export default SelectComponent;