import { AccountType } from "./types"; export declare class Account { accessToken?: string; ownership: boolean; uuid?: string; username?: string; type: AccountType; profile?: any; properties: any; alternativeValidation: boolean; constructor(token: string | undefined, type: AccountType); /** * Serialize account to JSON for storage */ toJSON(): any; /** * Deserialize account from JSON */ static fromJSON(data: any): Account; }