import { AtlexEvent } from '@atlex/core'; import type { Authenticatable } from '../contracts/Authenticatable.js'; /** * Fired when other devices are logged out (e.g. password change). */ export declare class OtherDeviceLogout extends AtlexEvent { readonly payload: { readonly guard: string; readonly user: Authenticatable; }; /** * @param payload - User context. */ constructor(payload: { readonly guard: string; readonly user: Authenticatable; }); } //# sourceMappingURL=OtherDeviceLogout.d.ts.map