/**
 * The various known UI styles in which an item can be highlighted. It'll be up to
 * you to determine what you want to show based on this highlighting, BNet doesn't
 * have any assets that correspond to these states. And yeah, RiseOfIron and Comet
 * have their own special highlight states. Don't ask me, I can't imagine they're
 * still used.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.ActivityGraphNodeHighlightType}
 */
export declare const ActivityGraphNodeHighlightType: {
    readonly None: 0;
    readonly Normal: 1;
    readonly Hyper: 2;
    readonly Comet: 3;
    readonly RiseOfIron: 4;
};
