matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 424 B
TypeScript
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 {};