/**
 * 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 VariantPrices
 */
export interface VariantPrices {
    /**
     *
     * @type {string}
     * @memberof VariantPrices
     */
    tcgplayer: string;
    /**
     *
     * @type {string}
     * @memberof VariantPrices
     */
    cardkingdom: string;
    /**
     *
     * @type {string}
     * @memberof VariantPrices
     */
    cardmarket: string;
}
/**
 * Check if a given object implements the VariantPrices interface.
 */
export declare function instanceOfVariantPrices(value: object): value is VariantPrices;
export declare function VariantPricesFromJSON(json: any): VariantPrices;
export declare function VariantPricesFromJSONTyped(json: any, ignoreDiscriminator: boolean): VariantPrices;
export declare function VariantPricesToJSON(json: any): VariantPrices;
export declare function VariantPricesToJSONTyped(value?: VariantPrices | null, ignoreDiscriminator?: boolean): any;
