export declare class UserProfile {
    id: number;
    user_id: number;
    verified: boolean;
    score: number;
    credit: number;
    name: string;
    tel?: string | null;
    email?: string | null;
    web?: string | null;
    avatar?: string | null;
    text?: string | null;
    description?: string | null;
    address?: string | null;
    socials?: any[] | null;
    nominated_id?: number | null;
    type: string;
    followers_count: string;
    following_count: string;
    constructor(data: UserProfileInput);
}
type UserProfileInput = {
    id: number;
    user_id: number;
    verified: boolean;
    score: number;
    credit: number;
    name: string;
    type: string;
    followers_count: string;
    following_count: string;
    tel?: string | null;
    email?: string | null;
    web?: string | null;
    avatar?: string | null;
    text?: string | null;
    description?: string | null;
    address?: string | null;
    socials?: any[] | null;
    nominated_id?: number | null;
};
export declare namespace UserProfile { }
export {};
