import { Collection } from '@discordjs/collection'; import { XboxMessage } from '../..'; import { Group } from '../Group'; import { APIGroup } from '../../rest'; export declare class GroupManager { client: XboxMessage; cache: Collection; constructor(client: XboxMessage); fetch(id: string): Promise; add(data: APIGroup, cache?: boolean, { id }?: { id?: string; }): Group; }