import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { ILabel } from '@/common/types'; export interface SelectLabelProps extends Partial { dataRef?: React.RefObject>; valueField?: string; afterLoad?: (sprints: ILabel[]) => void; flat?: boolean; projectId?: string; extraOptions?: any[]; } declare const SelectLabel: React.FC; export default SelectLabel;