import { gracely } from "gracely"; import { http } from "cloudly-http"; import { User } from "../../User"; import { Invites } from "./Invites"; export declare class Users { #private; private readonly client; get invites(): Invites; constructor(client: http.Client); create(user: User.Creatable): Promise; fetch(email: string): Promise; list(): Promise; remove(email: string): Promise; updateAccess(email: string, access: User.Access): Promise; removeMfa(email: string): Promise; }