/**
 * The types of credentials the Accounts system supports. This is the external
 * facing enum used in place of the internal-only Bungie.SharedDefinitions.
 * CredentialType.
 * @see {@link https://bungie-net.github.io/#/components/schemas/BungieCredentialType}
 */
export declare const BungieCredentialType: {
    readonly None: 0;
    readonly Xuid: 1;
    readonly Psnid: 2;
    readonly Wlid: 3;
    readonly Fake: 4;
    readonly Facebook: 5;
    readonly Google: 8;
    readonly Windows: 9;
    readonly DemonId: 10;
    readonly SteamId: 12;
    readonly BattleNetId: 14;
    readonly StadiaId: 16;
    readonly TwitchId: 18;
    readonly EgsId: 20;
};
