/**
 * A player can choose to restrict requests to join their Fireteam to specific
 * states. These are the possible states a user can choose.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyGamePrivacySetting}
 */
export declare const DestinyGamePrivacySetting: {
    readonly Open: 0;
    readonly ClanAndFriendsOnly: 1;
    readonly FriendsOnly: 2;
    readonly InvitationOnly: 3;
    readonly Closed: 4;
};
