import {HTMLProps} from 'react'; export interface CommonFieldProps extends HTMLProps { helpText?: string; label?: string; name: string; } export const commonDefaultProps = { helpText: '', label: '', };