import { AtlexEvent } from '@atlex/core'; import type { Authenticatable } from '../contracts/Authenticatable.js'; /** * Fired after a password reset notification is dispatched. */ export declare class PasswordResetLinkSent extends AtlexEvent { readonly payload: { readonly user: Authenticatable; }; /** * @param payload - User that received the link. */ constructor(payload: { readonly user: Authenticatable; }); } //# sourceMappingURL=PasswordResetLinkSent.d.ts.map