/**
 * This enum represents a set of flags - use bitwise operators to check which of
 * these match your value.
 * @see {@link https://bungie-net.github.io/#/components/schemas/GroupsV2.Capabilities}
 */
export declare const Capabilities: {
    readonly None: 0;
    readonly Leaderboards: 1;
    readonly Callsign: 2;
    readonly OptionalConversations: 4;
    readonly ClanBanner: 8;
    readonly D2InvestmentData: 16;
    readonly Tags: 32;
    readonly Alliances: 64;
};
