import { FC, CSSProperties } from 'react'; import type { InputProps } from 'tntd/lib/input'; import { SelectProps } from '../select'; export type SelectInputValue = Record; export interface SelectInputProps extends Omit { value?: SelectInputValue; onChange?: (value: SelectInputValue) => void; options?: SelectProps['options']; addonBeforeStyle?: CSSProperties; } export declare const SelectInput: FC; export default SelectInput;