import { InputWrapperBaseProps } from '../../internals/InputWrapper'; interface InputSimpleSelectOption { value: string; label: string; } export interface InputSimpleSelectProps extends InputWrapperBaseProps, Omit, "value" | "onSelect"> { value?: string; options: InputSimpleSelectOption[]; className?: string; } export declare const InputSimpleSelect: import('react').ForwardRefExoticComponent>; export {};