import { RegisterOptions } from 'react-hook-form'; export interface Props { value?: string[]; onChange?: () => void; } export default function LabeledEmailInputField({ name, label, style, additionalInfoLabel, showAdditionalInfoLabel, isSaveError, showErrorInfoLabel, errorInfoLabel, showTickIcon, placeholder, registerOptions, }: { label: { label: string; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; width?: number; }; name: string; additionalInfoLabel?: string; description?: string; errorInfoLabel?: string; isSaveError?: boolean; placeholder?: string; registerOptions?: RegisterOptions; showAdditionalInfoLabel?: boolean; showErrorInfoLabel?: boolean; showTickIcon?: boolean; style?: React.CSSProperties; }): import("react/jsx-runtime").JSX.Element;