import { OnModuleInit } from "@nestjs/common"; /** * TwoFactorModule - Two-Factor Authentication Module * * Provides comprehensive 2FA functionality including: * - TOTP (Time-based One-Time Password) authentication * - Passkey/WebAuthn authentication * - Backup codes for account recovery * - Pending session management for 2FA login flow * * @example * ```typescript * // Import in AuthModule * @Module({ * imports: [TwoFactorModule], * }) * export class AuthModule {} * ``` */ export declare class TwoFactorModule implements OnModuleInit { onModuleInit(): void; } //# sourceMappingURL=two-factor.module.d.ts.map