import { user } from '@prisma/client';
export declare class UserEntity implements user {
    constructor(partial: Partial<UserEntity>);
    id: number;
    createdAt: Date;
    updatedAt: Date;
    name: string;
    email: string;
    role: string;
    password: string;
    clientId: number | null;
    contactDetailsId: number | null;
    active: boolean;
    uuid: string;
    favourite: boolean;
    phone: string;
    address1: string;
    address2: string;
    city: string;
    state: string;
    postcode: string;
    country: string;
}
