import { ResendOtpService } from "./resend-otp.service";
export declare class ResendOtpController {
    private readonly otpService;
    constructor(otpService: ResendOtpService);
    sendOtp(mobileNumber: string, type: string): Promise<any>;
    encsendOtp(mobileNumber: any, type: string): Promise<any>;
}
