@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
10 lines (9 loc) • 383 B
TypeScript
/// <reference types="react" />
import { MFADeviceType } from '@dynamic-labs/sdk-api-core';
export type MfaVerificationViewProps = {
deviceId?: string;
type?: MFADeviceType;
isInitialSetup?: boolean;
showBackButton?: boolean;
};
export declare const MfaVerificationView: ({ type, isInitialSetup, showBackButton, deviceId, }: MfaVerificationViewProps) => JSX.Element;