import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import useProjectUsers from '@/hooks/data/useProjectUsers'; export interface SelectUserProps extends Partial { extraOptions?: { id: string; realName: string; }[]; flat?: boolean; projectId?: string; queryOptions?: Parameters[1]; } declare const SelectUser: React.FC; export default SelectUser;