import { AuthenticatedUser } from '../../interfaces'; export declare class Authenticated implements AuthenticatedUser { readonly username: string; readonly id: string | number | symbol; token?: string; readonly authenticated: true; isAnonymous(): boolean; constructor(username: string, id: string | number | symbol, token?: string); }