import { Repository } from 'typeorm'; import { User } from '../auth/entities/user.entity'; export declare class UsersService { private readonly userRepository; constructor(userRepository: Repository); findAllByTenant(tenantId: string, page: number, limit: number): Promise<{ data: Partial[]; total: number; page: number; limit: number; }>; findOne(id: string, tenantId: string): Promise>; update(id: string, updateDto: any, tenantId: string): Promise>; private sanitizeUser; }