/**
 * Some Objectives provide perks, generally as part of providing some kind of
 * interesting modifier for a Challenge or Quest. This indicates when the Perk is
 * granted.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyObjectiveGrantStyle}
 */
export declare const DestinyObjectiveGrantStyle: {
    readonly WhenIncomplete: 0;
    readonly WhenComplete: 1;
    readonly Always: 2;
};
