import React from 'react'; import { SelectProps } from 'choerodon-ui/pro/lib/select/Select'; export interface SelectEnvironmentProps extends Partial { flat?: boolean; dataRef?: React.MutableRefObject; afterLoad?: (data: any[]) => void; } declare const SelectEnvironment: React.FC; export default SelectEnvironment;