/**
 * 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.
 */
/**
 * * `NW` - Not Working
 * * `SE` - Spelling Error
 * * `II` - Incorrect Info
 * * `WC` - Wrong Card
 * * `VG` - Variant Grouping
 * * `O` - Other
 * @export
 * @enum {string}
 */
export declare enum KindEnum {
    Nw = "NW",
    Se = "SE",
    Ii = "II",
    Wc = "WC",
    Vg = "VG",
    O = "O"
}
export declare function instanceOfKindEnum(value: any): boolean;
export declare function KindEnumFromJSON(json: any): KindEnum;
export declare function KindEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): KindEnum;
export declare function KindEnumToJSON(value?: KindEnum | null): any;
export declare function KindEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): KindEnum;
