/**
 * Represents a potential state of an Activity Graph node.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyGraphNodeState}
 */
export declare const DestinyGraphNodeState: {
    readonly Hidden: 0;
    readonly Visible: 1;
    readonly Teaser: 2;
    readonly Incomplete: 3;
    readonly Completed: 4;
};
