import { Document } from 'mongoose'; export declare class UserProfile extends Document { userId?: string; country?: string; province?: string; city?: string; nickname?: string; gender?: number; avatar?: string; } export declare const userProfileSchema: import("mongoose").Schema;