import { AuthResponse } from '../../types'; export interface OTPPayload { email: string; otp: string; } export interface OTPLoginServerResponse { accessToken: string; message?: string; } export declare const loginWithOTP: (url: string, payload: OTPPayload) => Promise;