/** * An enum representing a Card's rarity */ export declare enum Rarity { C = "Common", U = "Uncommon", R3 = "Rare 3", R2 = "Rare 2", R1 = "Rare 1", F = "Fixed", P = "Promo" }