import { FC } from 'react'; import { SelectProps } from '../../../Select'; export interface FormSelectProps extends SelectProps { /** * 默认值 */ defaultValue?: string; /** * 改变方法 */ change?: (value: any) => any; /** * 绑定值 */ value?: string; } declare const FormSelect: FC; export default FormSelect;