/**
 * Commander Spellbook API
 * API for Commander Spellbook, the combo database engine for Magic: The Gathering
 *
 * The version of the OpenAPI document: 5.4.10
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * * `C` - C
 * * `W` - W
 * * `U` - U
 * * `B` - B
 * * `R` - R
 * * `G` - G
 * * `WU` - WU
 * * `WB` - WB
 * * `RW` - RW
 * * `GW` - GW
 * * `UB` - UB
 * * `UR` - UR
 * * `GU` - GU
 * * `BR` - BR
 * * `BG` - BG
 * * `RG` - RG
 * * `WUB` - WUB
 * * `URW` - URW
 * * `GWU` - GWU
 * * `RWB` - RWB
 * * `WBG` - WBG
 * * `RGW` - RGW
 * * `UBR` - UBR
 * * `BGU` - BGU
 * * `GUR` - GUR
 * * `BRG` - BRG
 * * `WUBR` - WUBR
 * * `UBRG` - UBRG
 * * `BRGW` - BRGW
 * * `RGWU` - RGWU
 * * `GWUB` - GWUB
 * * `WUBRG` - WUBRG
 * @export
 * @enum {string}
 */
export declare enum ColorEnum {
    C = "C",
    W = "W",
    U = "U",
    B = "B",
    R = "R",
    G = "G",
    Wu = "WU",
    Wb = "WB",
    Rw = "RW",
    Gw = "GW",
    Ub = "UB",
    Ur = "UR",
    Gu = "GU",
    Br = "BR",
    Bg = "BG",
    Rg = "RG",
    Wub = "WUB",
    Urw = "URW",
    Gwu = "GWU",
    Rwb = "RWB",
    Wbg = "WBG",
    Rgw = "RGW",
    Ubr = "UBR",
    Bgu = "BGU",
    Gur = "GUR",
    Brg = "BRG",
    Wubr = "WUBR",
    Ubrg = "UBRG",
    Brgw = "BRGW",
    Rgwu = "RGWU",
    Gwub = "GWUB",
    Wubrg = "WUBRG"
}
export declare function instanceOfColorEnum(value: any): boolean;
export declare function ColorEnumFromJSON(json: any): ColorEnum;
export declare function ColorEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ColorEnum;
export declare function ColorEnumToJSON(value?: ColorEnum | null): any;
export declare function ColorEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): ColorEnum;
