UNPKG

rsuite

Version:

A suite of react components

21 lines (15 loc) 575 B
import * as React from 'react'; import { FormControlPickerProps } from '../@types/common'; import { SelectProps } from '../SelectPicker/SelectPicker.d'; import { TagProps } from '../Tag/Tag.d'; export interface InputPickerProps extends FormControlPickerProps<any>, SelectProps<any> { /** Settings can create new options */ creatable?: boolean; /** * Tag related props. * https://github.com/rsuite/rsuite/blob/master/src/Tag/Tag.d.ts */ tagProps?: TagProps; } declare const InputPicker: React.ComponentType<InputPickerProps>; export default InputPicker;