import React from 'react'; import { FRCInputProps, InputRef } from '../../Input'; export interface FRCInputSelectProps extends FRCInputProps { /** 下拉框选项 */ options?: Array<{ label: React.ReactNode; value: string; }>; /** 下拉框类名 */ dropdownClassName?: string; /** 下拉框的样式 */ dropdownStyle?: React.CSSProperties; /** 宽度 */ width?: number | string; /** 选中回调 */ onDropdownSelected?: (value: string) => void; /** */ onBlur?: () => void; } export declare const InputSelect: React.ForwardRefExoticComponent>; export default InputSelect;