import { default as React } from 'react'; import { DeviceInfo, UserInfo } from '../../types'; interface MFAConfirmIdentityProps { authToken?: string; user: { userid?: string; accountid?: string; email?: string; phone?: string; [key: string]: unknown; } & UserInfo & { authType?: string; userId?: string; accountId?: string; }; authType?: string; baseUrl: string; deviceData?: DeviceInfo | null | Record; onClose: () => void; returnCall: (status: number) => void; logAction: (action: string, message: string, code: number, data?: unknown) => void; } declare const MFAConfirmIdentity: React.FC; export default MFAConfirmIdentity;