import { SelectProps } from 'antd'; import React from 'react'; import type { ProFormOtherType } from '../../../propsType'; export interface Props extends SelectProps { dataSource?: any[]; scrollFollowParent?: boolean; otherProps?: ProFormOtherType; isView?: boolean; } declare const Select: React.FC; export default Select;