/// import { MFADeviceType, TokenScope } from '@dynamic-labs/sdk-api-core'; export type MfaVerificationViewProps = { deviceId?: string; type?: MFADeviceType; isInitialSetup?: boolean; showBackButton?: boolean; createMfaToken?: boolean; requestedScopes?: TokenScope[]; }; export declare const MfaVerificationView: ({ type, isInitialSetup, showBackButton, createMfaToken, deviceId, requestedScopes, }: MfaVerificationViewProps) => JSX.Element;