UNPKG

matrix-react-sdk

Version:
14 lines (13 loc) 424 B
import React, { ReactNode } from "react"; interface CheckEmailProps { email: string; errorText: string | ReactNode | null; onReEnterEmailClick: () => void; onResendClick: () => Promise<boolean>; onSubmitForm: (ev: React.FormEvent) => void; } /** * This component renders the email verification view of the forgot password flow. */ export declare const CheckEmail: React.FC<CheckEmailProps>; export {};