/** * @author linhd * @date 2022/3/10 4:40 PM * @description 选择输入 */ import { FunctionComponent } from 'react'; import { SelectProps } from '../Select'; export interface SelectInputProps extends Omit { list?: any[]; } export declare const SelectInput: FunctionComponent; export default SelectInput;