export type EnrollFactorOptions = { type: 'sms'; phoneNumber: string; } | { type: 'totp'; issuer: string; user: string; } | { type: 'generic_otp'; };