import { AuthService } from '../../core/auth/auth.service'; export declare class UsersController { private authService; constructor(authService: AuthService); getUsers(): Promise; addUser(body: any): Promise; updateUser(param: any, body: any): Promise; deleteUser(param: any): Promise; }