import { HttpService } from '@nestjs/axios'; import { SignupResponse } from './dst.interface'; import { FusionauthService } from './fusionauth/fusionauth.service'; import { SMSResponse } from './sms/sms.interface'; export declare class DstService { private readonly fusionAuthService; private readonly httpService; expiry: number; constructor(fusionAuthService: FusionauthService, httpService: HttpService); createUser(data: any): Promise; updatePassword(data: any): Promise; login(user: any): Promise; verifyAndLoginOTP({ phone, status, role }: { phone: any; status: any; role: any; }): Promise; transformOtpResponse(status: SMSResponse): Promise; loginTrainee({ id, dob, role }: { id: any; dob: any; role: any; }): Promise; checkUserInDb(id: number): Promise; } //# sourceMappingURL=dst.service.d.ts.map