import type { Client } from '../client';
import type { Realm } from '../realm';
export interface User {
    id: string;
    name: string;
    name_locked: boolean;
    first_name: string | null;
    last_name: string | null;
    display_name: string | null;
    email: string;
    password: string | null;
    avatar: string | null;
    cover: string | null;
    reset_hash: string | null;
    reset_at: string | null;
    reset_expires: string | null;
    status: string | null;
    status_message: string | null;
    active: boolean;
    activate_hash: string | null;
    created_at: Date;
    updated_at: Date;
    client_id: Client['id'] | null;
    client: Client | null;
    realm_id: Realm['id'];
    realm: Realm;
    [key: string]: any;
}
//# sourceMappingURL=entity.d.ts.map