import { gracely } from "gracely"; import { http } from "cloudly-http"; import { User } from "../../User"; export declare class Invites { private readonly client; constructor(client: http.Client); create(creatable: User.Invite.Creatable): Promise; fetch(identifier: string): Promise; list(): Promise; remove(identifier: string): Promise; }