import { BankAccount } from './bankAccount'; import { Country } from './country'; import { Hub } from './hub'; import { LifterType } from './lifterType'; import { Organization } from './organization'; import { Status } from './status'; import { UserType } from './userType'; import { DocumentType } from './documentType'; import { Gender } from './gender'; export declare class UserBO { id: number; name: string; email: string; numDoc: string; phone: string; hubs: Hub[]; organizations: Organization[]; status: Status; secondLastName: string; country: Country; bankAccounts: BankAccount[]; middleName: string; lifterTypes: LifterType[]; address: string; type: UserType; internalUserId: number; birthDate: string; typeDoc: DocumentType; lastName: string; gender: Gender; firstName: string; statusId: number; operatorId: number[]; hasInternal: boolean; settlementTypeId: number; constructor(id: number, numDoc: string, phone: string, email: string, name: string, internalUserId: number, country: Country, birthDate: string, status: Status, lifterTypes: LifterType[], statusId: number, hubs: Hub[], organizations: Organization[], secondLastName: string, bankAccounts: BankAccount[], middleName: string, address: string, type: UserType, typeDoc: DocumentType, lastName: string, gender: Gender, firstName: string, operatorId: number[], hasInternal: boolean, settlementTypeId: number); } //# sourceMappingURL=userBO.d.ts.map