import { CSSProperties } from 'react'; import type { FC } from 'react'; import type { SelectProps } from 'rc-select/lib/Select'; import './style'; interface IProps { /** * @description Select options List */ options?: string | string[] | SelectProps['options']; className?: string; style?: CSSProperties; disabled?: boolean; placeholder?: string; value?: any; onChange?: any; preview?: boolean; /** * @description The key for the value of prefix in the prop value * @default 'prefix' */ prefixPropName?: string; /** * @description The key for the value of input in the prop value * @default 'input' */ inputPropName?: string; } declare const SelectableInput: FC; export default SelectableInput;