import * as React from 'react'; interface SelectFieldProps { /** The label of the text field */ label?: string; /** The label of the text field */ value?: string; /** Set to true to display input with error */ error?: boolean; /** Set to true to disable in the input */ disabled?: boolean; /** Optional helper text */ helperText?: React.ReactNode; /** Called when the value changes */ onChange?: (value: string) => any; /** Called when the input loses focus */ onBlur?: React.FocusEventHandler; /** The