import React from 'react'; interface LoginCardProps { className?: string; title: string; emailInputLabel: string; emailInputPlaceholder: string; passwordInputLabel: string; passwordInputPlaceholder: string; rememberMeLabel: string; loginBtn: string; passwordForgottenBtn: string; signupBtn?: string; signupDisabled?: boolean; infoText?: string; fixEmailValue?: string; persistState: boolean; onChangePersistState: (checked: boolean) => void; onSubmit: (email: string, password: string, rememberMe: boolean) => void; onOpenDialog: (dialog: 'passwordForgotten' | 'signup') => void; } declare const LoginCard: React.FC; export default LoginCard;