type OtpResponse =
| {
credentialBundle: string;
status: "SUCCESS";
}
| {
encryptedPayload: string;
multiFactors: MfaFactor[];
status: "MFA_REQUIRED";
};Defined in: account-kit/signer/src/client/types.ts:108