export declare class User {
    id: number;
    user_id: number;
    username: string;
    password: string;
    childs: string;
    role: string;
    verification_code: string;
    is_active: string;
    created_at: Date;
    has_mpin: boolean;
    notification_enabled: boolean;
    lang_id: number;
    fcm_token: string;
}
