/**
 * 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 FeatureProducedInVariantSuggestion
 */
export interface FeatureProducedInVariantSuggestion {
    /**
     * Feature name
     * @type {string}
     * @memberof FeatureProducedInVariantSuggestion
     */
    feature: string;
}
/**
 * Check if a given object implements the FeatureProducedInVariantSuggestion interface.
 */
export declare function instanceOfFeatureProducedInVariantSuggestion(value: object): value is FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionFromJSON(json: any): FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionToJSON(json: any): FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionToJSONTyped(value?: FeatureProducedInVariantSuggestion | null, ignoreDiscriminator?: boolean): any;
