import React from 'react'; import type { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; import { ISprint } from '@/common/types'; export interface SelectSprintProps extends Partial { hasUnassign?: boolean; isProgram?: boolean; statusList?: string[]; selectSprints?: number[]; afterLoad?: (sprints: ISprint[]) => void; projectId?: string; currentSprintOption?: boolean; dataRef?: React.MutableRefObject; flat?: boolean; } declare const SelectSprint: React.FC; export default SelectSprint;