/** * 等待邮件链接验证页面(对应图1) */ import React from 'react'; import type { RegisterFlowData, VerificationMethod } from '../shared/registerFlow'; export interface WaitEmailLinkProps { /** 流程数据 */ flowData: RegisterFlowData; /** 重新发送 */ onResend?: () => void; /** 返回 */ onBack?: () => void; /** 编辑邮箱 */ onEditEmail?: () => void; /** 倒计时秒数 */ countdown?: number; /** 验证方式 */ verificationMethod?: VerificationMethod; } declare function WaitEmailLink({ flowData, onResend, onBack, onEditEmail, countdown, verificationMethod, }: WaitEmailLinkProps): React.JSX.Element; export default WaitEmailLink;