import { AtlexEvent } from '@atlex/core'; import type { Authenticatable } from '../contracts/Authenticatable.js'; /** * Fired when the current session is destroyed during logout. */ export declare class CurrentDeviceLogout extends AtlexEvent { readonly payload: { readonly guard: string; readonly user: Authenticatable; }; /** * @param payload - User and guard context. */ constructor(payload: { readonly guard: string; readonly user: Authenticatable; }); } //# sourceMappingURL=CurrentDeviceLogout.d.ts.map