import { AtlexEvent } from '@atlex/core'; import type { Authenticatable } from '../contracts/Authenticatable.js'; /** * Fired when a user is resolved from session or token without a fresh login. */ export declare class Authenticated extends AtlexEvent { readonly payload: { readonly guard: string; readonly user: Authenticatable; }; /** * @param payload - Guard and resolved user. */ constructor(payload: { readonly guard: string; readonly user: Authenticatable; }); } //# sourceMappingURL=Authenticated.d.ts.map