/// export default function InputRow({ label, name, placeholder, type, horizontal, value, onChange, error, required, onBlur, options, }: { label: any; name: any; placeholder?: string; type?: string; horizontal?: boolean; value?: any; onChange?: (_: any) => void; error?: any; required?: boolean; onBlur?: (_: any) => void; options?: any; }): JSX.Element;