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