import React from 'react'; export interface Props { /** * 是否自动获取焦点 */ autoFocus?: boolean; /** * 子元素 */ children?: React.ReactNode; /** * 自定义class名称 */ className?: string; /** * 不可用 */ disabled?: boolean; /** * 失去焦点时的回调函数 */ onBlur?: () => void; /** * 获取焦点时的回调函数 */ onFocus?: () => void; /** * 是否只读 */ readOnly?: boolean; /** * 值 */ value?: string; /** * 是否是获取焦点状态 */ focused?: boolean; /** * 渲染方式 */ renderValue?: React.ReactNode; } /** * 处理弹窗选择相关组件input内部渲染元素 */ declare const SelectInput: React.ForwardRefExoticComponent>; export default SelectInput;