export interface ForgotPasswordTexts { title?: string; emailLabel?: string; submitButton?: string; backToLogin?: string; emailSentTitle?: string; emailSentMessage?: string; } export interface LoginTexts { title?: string; emailLabel?: string; passwordLabel?: string; forgotPassword?: string; submitButton?: string; noAccount?: string; signupLink?: string; } export interface ResetPasswordTexts { title?: string; newPasswordLabel?: string; confirmPasswordLabel?: string; submitButton?: string; passwordStrength?: { weak?: string; medium?: string; strong?: string; }; } export interface SignupTexts { title?: string; emailLabel?: string; passwordLabel?: string; submitButton?: string; haveAccount?: string; loginLink?: string; passwordStrength?: { weak?: string; medium?: string; strong?: string; }; }