/**
 * 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 CardPrices
 */
export interface CardPrices {
    /**
     *
     * @type {string}
     * @memberof CardPrices
     */
    tcgplayer: string;
    /**
     *
     * @type {string}
     * @memberof CardPrices
     */
    cardkingdom: string;
    /**
     *
     * @type {string}
     * @memberof CardPrices
     */
    cardmarket: string;
}
/**
 * Check if a given object implements the CardPrices interface.
 */
export declare function instanceOfCardPrices(value: object): value is CardPrices;
export declare function CardPricesFromJSON(json: any): CardPrices;
export declare function CardPricesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardPrices;
export declare function CardPricesToJSON(json: any): CardPrices;
export declare function CardPricesToJSONTyped(value?: CardPrices | null, ignoreDiscriminator?: boolean): any;
