import { LoggedInResponseType } from "./";
export declare const loginByPhonePassword: (phone: string, password: string) => Promise<import("./").ReturnType<LoggedInResponseType>>;
export declare const registerBySendPhoneOTP: (phone: string, areaCode: string) => Promise<import("./").ReturnType<unknown>>;
export declare const resendPhoneOTP: (phone: string, areaCode: string, gRecaptchaResponse: string) => Promise<import("./").ReturnType<unknown>>;
export declare const verifyByPhoneOTP: (phone: string, areaCode: string, otpCode: string) => Promise<import("./").ReturnType<LoggedInResponseType>>;
export declare const resendUpdatePhoneOTP: (phone: string, areaCode: string) => Promise<import("./").ReturnType<unknown>>;
export declare const verifyUpdatePhoneOTP: (areaCode: string, otpCode: string) => Promise<import("./").ReturnType<unknown>>;
