export interface User { id: string; firstName: string; lastName: string; phone: string; email: string; country: string; region: string; employeeNumber: string; security: string; enc_uid: string; } export interface UserExtract { firstName: string; lastName: string; phone: string; email: string; country: string; region: string; employeeNumber: string; security: string; } export declare class Users { private readonly _users; constructor(); getUsers(): User[]; getUsersById(uids: string[]): User[]; getFirstUsers(): UserExtract[]; upsertUserEncUidById(id: string, encryptedUid: { enc_uid: string; }): void; } //# sourceMappingURL=users.d.ts.map