/**
 * Shared schemas and common types for the Follow Client SDK
 */

/**
 * Two-factor authentication types
 * Based on the core application's TwoFactorObjectSchema
 */
export interface TwoFactorAuth {
  /** 6-digit TOTP code for two-factor authentication */
  TOTPCode?: string
}
