import { Rank } from '../'; export interface User { id: number; username: string; motto: string; credits: number; pixels: number; points: number; online: boolean; figure: string; favoriteYoutubeVideo: string; joinDate: string; lastLoginDate: string; rank?: Omit; } export declare const exampleUser: User;