import { PayioUserTypeEnum } from '../enums';
export interface IUser {
    accessCount: number;
    active: boolean;
    createdAt: Date;
    currentCompanyId: string | null;
    currentCompanyName: string | null;
    email: string | null;
    id: string;
    imageUrl: string | null;
    internationalCode: string;
    lastAccessAt: Date;
    name: string;
    code: string | null;
    phoneNumber: string;
    tags: string[];
    type: PayioUserTypeEnum;
    updatedAt: Date;
}
