import { NestAuthUser } from "../../user/entities/user.entity"; import { NestAuthMFAMethodEnum } from "@ackplus/nest-auth-contracts"; export interface TwoFactorCodeSentEventPayload { user: NestAuthUser; tenantId?: string; method: NestAuthMFAMethodEnum; code: string; } export declare class TwoFactorCodeSentEvent { readonly payload: TwoFactorCodeSentEventPayload; constructor(payload: TwoFactorCodeSentEventPayload); } //# sourceMappingURL=two-factor-code-sent.event.d.ts.map