/**
 * 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.
 */
import type { Card } from './Card.js';
/**
 *
 * @export
 * @interface ClassifiedCard
 */
export interface ClassifiedCard {
    /**
     *
     * @type {Card}
     * @memberof ClassifiedCard
     */
    card: Card;
    /**
     *
     * @type {number}
     * @memberof ClassifiedCard
     */
    quantity: number;
    /**
     *
     * @type {boolean}
     * @memberof ClassifiedCard
     */
    banned: boolean;
    /**
     *
     * @type {boolean}
     * @memberof ClassifiedCard
     */
    gameChanger: boolean;
    /**
     *
     * @type {boolean}
     * @memberof ClassifiedCard
     */
    massLandDenial: boolean;
    /**
     *
     * @type {boolean}
     * @memberof ClassifiedCard
     */
    extraTurn: boolean;
}
/**
 * Check if a given object implements the ClassifiedCard interface.
 */
export declare function instanceOfClassifiedCard(value: object): value is ClassifiedCard;
export declare function ClassifiedCardFromJSON(json: any): ClassifiedCard;
export declare function ClassifiedCardFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClassifiedCard;
export declare function ClassifiedCardToJSON(json: any): ClassifiedCard;
export declare function ClassifiedCardToJSONTyped(value?: ClassifiedCard | null, ignoreDiscriminator?: boolean): any;
