import React from "react"; export interface TextFieldProps extends React.InputHTMLAttributes { label?: string; required?: boolean; hint?: string; helperText?: string; error?: boolean; prefix?: string; iconBefore?: React.ReactNode; onIconBeforeClick?: React.MouseEventHandler; iconAfter?: React.ReactNode; onIconAfterClick?: React.MouseEventHandler; link?: string; placeholder?: string; onLinkClick?: React.MouseEventHandler; multiLine?: boolean; initialValue?: string; }