import { gracely } from "gracely"; import { http } from "cloudly-http"; import { Realm } from "../Realm"; import { User } from "../User"; export declare class Me { private readonly client; constructor(client: http.Client); updatePassword(creatable: User.Password.Creatable): Promise; login(email: string, password: string, realm: Realm, totp?: User.mfa.Totp.Otp): Promise; setupMfa(totp: User.mfa.Totp, otp: User.mfa.Totp.Otp): Promise; }