import * as React from 'react' export interface FieldProps { children?: React.ReactNode className?: string dataTest?: string /** * Disabled status, shown when mouse is over label */ disabled?: boolean /** * Field status. Mutually exclusive with `valid` and `warning` props */ error?: boolean /** * Useful text within the field */ helpText?: string /** * Label at the top of the field */ label?: string /** * `name` will become the target of the `for`/`htmlFor` attribute on the `