/**
 * Bungie.Net API
 * These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality.
 *
 * Contact: support@bungie.com
 *
 * NOTE: This class is auto generated by the bungie-net-core code generator program
 * Repository: {@link https://github.com/owens1127/bungie-net-core}
 * Do not edit these files manually.
 */
/**
 * A hint for what screen should be shown when this presentation node is clicked
 * into. How you use this is your UI is up to you.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyPresentationScreenStyle}
 */
export declare enum DestinyPresentationScreenStyle {
    /** Use the "default" view for the presentation nodes. */
    Default = 0,
    /**
     * Show sub-items as "category sets". In-game, you'd see these as a vertical list
     * of child presentation nodes - armor sets for example - and the icons of items
     * within those sets displayed horizontally.
     */
    CategorySets = 1,
    /**
     * Show sub-items as Badges. (I know, I know. We don't need no stinkin' badges har
     * har har)
     */
    Badge = 2
}
