import { NestAuthUser } from "../../user/entities/user.entity"; import { NestAuthResetPasswordWithTokenRequestDto } from '../dto/requests/reset-password-with-token.request.dto'; export interface PasswordResetEventPayload { user: NestAuthUser; tenantId?: string; input: NestAuthResetPasswordWithTokenRequestDto; } export declare class PasswordResetEvent { readonly payload: PasswordResetEventPayload; constructor(payload: PasswordResetEventPayload); } //# sourceMappingURL=password-reset.event.d.ts.map