import { InputHTMLAttributes } from 'react'; export interface IDxTextFieldProps extends Omit, 'className' | 'onReset' | 'onClick' | 'autoComplete'> { width: string; className: string; label: string; status: 'error' | 'success'; helperMessage: string; icon: React.ReactNode; background: string; onClick: (event?: React.MouseEvent) => void; onReset: (event?: React.MouseEvent) => void; }