import { IAuthResponse, IAuthWithPasswordResponse, IGoogleLoginResponse, IOtpValidateResponse } from "@/app/dashboard/models/Auth"; export interface IPhoneLoginResponse { success: boolean; message?: string; } export declare const loginWithOtpApi: (email?: string, phoneNumber?: string) => Promise>; export declare const loginWithGoogle: (idToken: string) => Promise>; export declare const loginWithEmailAndPassword: (email: string, password: string) => Promise>; export declare const validateOTP: (otp: string, email?: string, phoneNumber?: string) => Promise>; export declare const validateUserOTP: (otp: string, email?: string, phoneNumber?: string) => Promise>; export declare const setAccessToken: (token: string) => void; //# sourceMappingURL=auth-service.d.ts.map