/**
 * When a Vendor Interaction provides rewards, they'll either let you choose one or
 * let you have all of them. This determines which it will be.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyVendorInteractionRewardSelection}
 */
export declare const DestinyVendorInteractionRewardSelection: {
    readonly None: 0;
    readonly One: 1;
    readonly All: 2;
};
