/**
 * 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 { PaginatedFindMyCombosResponseListResults } from './paginatedFindMyCombosResponseListResults';
/**
 *
 * @export
 * @interface PaginatedFindMyCombosResponseList
 */
export interface PaginatedFindMyCombosResponseList {
    /**
     *
     * @type {number}
     * @memberof PaginatedFindMyCombosResponseList
     */
    count: number;
    /**
     *
     * @type {string}
     * @memberof PaginatedFindMyCombosResponseList
     */
    next: string | null;
    /**
     *
     * @type {string}
     * @memberof PaginatedFindMyCombosResponseList
     */
    previous: string | null;
    /**
     *
     * @type {PaginatedFindMyCombosResponseListResults}
     * @memberof PaginatedFindMyCombosResponseList
     */
    results: PaginatedFindMyCombosResponseListResults;
}
/**
 * Check if a given object implements the PaginatedFindMyCombosResponseList interface.
 */
export declare function instanceOfPaginatedFindMyCombosResponseList(value: object): value is PaginatedFindMyCombosResponseList;
export declare function PaginatedFindMyCombosResponseListFromJSON(json: any): PaginatedFindMyCombosResponseList;
export declare function PaginatedFindMyCombosResponseListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedFindMyCombosResponseList;
export declare function PaginatedFindMyCombosResponseListToJSON(json: any): PaginatedFindMyCombosResponseList;
export declare function PaginatedFindMyCombosResponseListToJSONTyped(value?: PaginatedFindMyCombosResponseList | null, ignoreDiscriminator?: boolean): any;
