import type { UserPayload } from '../types/user.ts'; export declare class User { hasProfile: boolean; loggedIn: boolean; nick?: string; noticeAgree: boolean; noticeAgreeUpdatedAt?: Date; penalties?: []; imageURL?: string; id?: string; verified: boolean; constructor(data: UserPayload); }