/**
 * 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.
 */
import type { Variant } from './variant';
/**
 *
 * @export
 * @interface FindMyCombosResponse
 */
export interface FindMyCombosResponse {
    /**
     *
     * @type {string}
     * @memberof FindMyCombosResponse
     */
    identity: string;
    /**
     *
     * @type {Array<Variant>}
     * @memberof FindMyCombosResponse
     */
    included: Array<Variant>;
    /**
     *
     * @type {Array<Variant>}
     * @memberof FindMyCombosResponse
     */
    includedByChangingCommanders: Array<Variant>;
    /**
     *
     * @type {Array<Variant>}
     * @memberof FindMyCombosResponse
     */
    almostIncluded: Array<Variant>;
    /**
     *
     * @type {Array<Variant>}
     * @memberof FindMyCombosResponse
     */
    almostIncludedByAddingColors: Array<Variant>;
    /**
     *
     * @type {Array<Variant>}
     * @memberof FindMyCombosResponse
     */
    almostIncludedByChangingCommanders: Array<Variant>;
    /**
     *
     * @type {Array<Variant>}
     * @memberof FindMyCombosResponse
     */
    almostIncludedByAddingColorsAndChangingCommanders: Array<Variant>;
}
/**
 * Check if a given object implements the FindMyCombosResponse interface.
 */
export declare function instanceOfFindMyCombosResponse(value: object): value is FindMyCombosResponse;
export declare function FindMyCombosResponseFromJSON(json: any): FindMyCombosResponse;
export declare function FindMyCombosResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FindMyCombosResponse;
export declare function FindMyCombosResponseToJSON(json: any): FindMyCombosResponse;
export declare function FindMyCombosResponseToJSONTyped(value?: FindMyCombosResponse | null, ignoreDiscriminator?: boolean): any;
