/**
 * 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.
 */
/**
 *
 * @export
 * @interface Card
 */
export interface Card {
    /**
     *
     * @type {number}
     * @memberof Card
     */
    readonly id: number;
    /**
     *
     * @type {string}
     * @memberof Card
     */
    name: string;
    /**
     *
     * @type {string}
     * @memberof Card
     */
    oracleId: string | null;
    /**
     * Is this from an upcoming set?
     * @type {boolean}
     * @memberof Card
     */
    spoiler: boolean;
    /**
     *
     * @type {string}
     * @memberof Card
     */
    typeLine: string;
}
/**
 * Check if a given object implements the Card interface.
 */
export declare function instanceOfCard(value: object): value is Card;
export declare function CardFromJSON(json: any): Card;
export declare function CardFromJSONTyped(json: any, ignoreDiscriminator: boolean): Card;
export declare function CardToJSON(json: any): Card;
export declare function CardToJSONTyped(value?: Omit<Card, 'id'> | null, ignoreDiscriminator?: boolean): any;
