/**
 * Commander Spellbook API
 * API for Commander Spellbook, the combo database engine for Magic: The Gathering
 *
 * The version of the OpenAPI document: 4.2.2
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * * `N` - New
 * * `D` - Draft
 * * `NR` - Needs Review
 * * `OK` - Ok
 * * `E` - Example
 * * `R` - Restore
 * * `NW` - Not Working
 * @export
 * @enum {string}
 */
export declare enum VariantStatusEnum {
    N = "N",
    D = "D",
    Nr = "NR",
    Ok = "OK",
    E = "E",
    R = "R",
    Nw = "NW"
}
export declare function instanceOfVariantStatusEnum(value: any): boolean;
export declare function VariantStatusEnumFromJSON(json: any): VariantStatusEnum;
export declare function VariantStatusEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): VariantStatusEnum;
export declare function VariantStatusEnumToJSON(value?: VariantStatusEnum | null): any;
export declare function VariantStatusEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): VariantStatusEnum;
