/**
 * 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.
 */
import type { Template } from './Template.js';
/**
 *
 * @export
 * @interface PaginatedTemplateList
 */
export interface PaginatedTemplateList {
    /**
     *
     * @type {number}
     * @memberof PaginatedTemplateList
     */
    count: number | null;
    /**
     *
     * @type {string}
     * @memberof PaginatedTemplateList
     */
    next: string | null;
    /**
     *
     * @type {string}
     * @memberof PaginatedTemplateList
     */
    previous: string | null;
    /**
     *
     * @type {Array<Template>}
     * @memberof PaginatedTemplateList
     */
    results: Array<Template>;
}
/**
 * Check if a given object implements the PaginatedTemplateList interface.
 */
export declare function instanceOfPaginatedTemplateList(value: object): value is PaginatedTemplateList;
export declare function PaginatedTemplateListFromJSON(json: any): PaginatedTemplateList;
export declare function PaginatedTemplateListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedTemplateList;
export declare function PaginatedTemplateListToJSON(json: any): PaginatedTemplateList;
export declare function PaginatedTemplateListToJSONTyped(value?: PaginatedTemplateList | null, ignoreDiscriminator?: boolean): any;
