import React from 'react'; type VerifyEmailProps = { className?: string; verifying?: boolean; successfullyVerified?: boolean; alreadyVerified?: boolean; expired?: boolean; resend: () => void; resending?: boolean; resent?: boolean; redirectToLogin: () => void; redirectDelay?: number; }; declare const VerifyEmail: (props: VerifyEmailProps) => React.ReactNode; export default VerifyEmail;