import { AppUsersStep } from 'src/app_users_steps/entities/app_users_step.entity';
import { Group } from 'src/groups/entities/group.entity';
import { UserAchievement } from 'src/achievements/entities/user-achievement.entity';
import { Province } from 'src/provinces/entities/province.entity';
import { UserNotification } from 'src/notifications/entities/user-notification.entity';
import { UserStreak } from 'src/streaks/entities/user-streak.entity';
export declare class AppUser {
    id: string;
    name: string;
    email: string;
    password: string;
    profile_picture: string;
    step_goal: string;
    social_id: string;
    social_type: string;
    device_id: string;
    password_reset_token: string;
    password_reset_token_expiry: string;
    current_streak: string;
    best_streak: string;
    whatsapp_no: string;
    is_email_verified: boolean;
    verification_token: string;
    verification_token_expiry: string;
    access_token: string;
    access_token_expiry: string;
    streak_updated_at: string;
    status: number;
    zipcode: string;
    fcm_token: string;
    province_id: string;
    notify: boolean;
    is_step_tracking_enabled: boolean;
    updated_at: Date;
    created_at: Date;
    deleted_at: Date;
    user_steps: AppUsersStep[];
    user_notifications: UserNotification;
    user_achievements: UserAchievement[];
    group: Group[];
    user_streaks: UserStreak[];
    user_groups: Group[];
    province: Province;
}
