import { AtlexEvent } from '@atlex/core'; import type { Authenticatable } from '../contracts/Authenticatable.js'; /** * Fired after logout completes. */ export declare class Logout extends AtlexEvent { readonly payload: { readonly guard: string; readonly user: Authenticatable | null; }; /** * @param payload - Guard and user that was logged out. */ constructor(payload: { readonly guard: string; readonly user: Authenticatable | null; }); } //# sourceMappingURL=Logout.d.ts.map