import React from "react"; export interface EmailInputBlockProps { anchorId?: string; title?: string; subTitle?: string; emailInputDescription?: string; inputPlaceholder?: string; successFeedback?: string; ctaButtonText?: string; ctaText?: string; caption?: React.ReactNode; backgroundColor?: "green" | "white" | "yellow" | "blue" | "navy" | "gray90"; themeColor?: "blue" | "green" | "orange" | "purple" | "white"; showPinWheel?: boolean; padding?: "none" | "large"; validationErrorMessage?: string; requiredErrorMessage?: string; onSubmit: (values: EmailInputFormValues) => void; } export interface EmailInputFormValues { email: string; }