export interface EnrollAuthFactorOptions { userId: string; type: 'totp'; totpIssuer?: string; totpUser?: string; totpSecret?: string; } export interface SerializedEnrollUserInMfaFactorOptions { type: 'totp'; totp_issuer?: string; totp_user?: string; totp_secret?: string; }