import { CanActivate, ExecutionContext } from '@nestjs/common'; import { OtpService } from './otp.service'; export declare class OtpGateGuard implements CanActivate { private otpService; constructor(otpService: OtpService); canActivate(context: ExecutionContext): Promise; }