/**
 * 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.
 */
/**
 *
 * @export
 * @interface CardInDeck
 */
export interface CardInDeck {
    /**
     *
     * @type {string}
     * @memberof CardInDeck
     */
    card: string;
    /**
     *
     * @type {number}
     * @memberof CardInDeck
     */
    quantity: number;
}
/**
 * Check if a given object implements the CardInDeck interface.
 */
export declare function instanceOfCardInDeck(value: object): value is CardInDeck;
export declare function CardInDeckFromJSON(json: any): CardInDeck;
export declare function CardInDeckFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardInDeck;
export declare function CardInDeckToJSON(json: any): CardInDeck;
export declare function CardInDeckToJSONTyped(value?: CardInDeck | null, ignoreDiscriminator?: boolean): any;
