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