import { UsersService } from './users.service'; import { ChangePasswordDto } from './dto/change-password.dto'; import { AuthRequest } from 'src/common/interfaces/auth-request.interface'; import { UserInfoResponseDto } from './dto/user-info-response.dto'; export declare class UsersController { private readonly userService; constructor(userService: UsersService); changePassword(req: AuthRequest, dto: ChangePasswordDto): Promise; }