import type { ReactNode } from 'react'; import { type InputBoxProps } from '../InputBox'; type SelectInputOptions = readonly (readonly [string, string])[]; export type SelectInputProps = Omit & { error?: string; options?: SelectInputOptions; htmlSize?: number; addon?: ReactNode; }; declare const SelectInput: import("react").ForwardRefExoticComponent & { error?: string; options?: SelectInputOptions; htmlSize?: number; addon?: ReactNode; } & import("react").RefAttributes>; export default SelectInput; //# sourceMappingURL=SelectInput.d.ts.map