/**
 * 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 WebsiteProperty
 */
export interface WebsiteProperty {
    /**
     *
     * @type {string}
     * @memberof WebsiteProperty
     */
    readonly key: string;
    /**
     * Comma-separated list of values
     * @type {string}
     * @memberof WebsiteProperty
     */
    value: string;
}
/**
 * Check if a given object implements the WebsiteProperty interface.
 */
export declare function instanceOfWebsiteProperty(value: object): value is WebsiteProperty;
export declare function WebsitePropertyFromJSON(json: any): WebsiteProperty;
export declare function WebsitePropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebsiteProperty;
export declare function WebsitePropertyToJSON(json: any): WebsiteProperty;
export declare function WebsitePropertyToJSONTyped(value?: Omit<WebsiteProperty, 'key'> | null, ignoreDiscriminator?: boolean): any;
