UNPKG

matrix-react-sdk

Version:
12 lines (11 loc) 315 B
import React, { ReactNode } from "react"; interface Props { email: string; errorText: ReactNode | null; onFinished(): void; onCloseClick: () => void; onReEnterEmailClick: () => void; onResendClick: () => Promise<boolean>; } export declare const VerifyEmailModal: React.FC<Props>; export {};