/**
 * 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 { Feature } from './Feature.js';
/**
 *
 * @export
 * @interface PaginatedFeatureList
 */
export interface PaginatedFeatureList {
    /**
     *
     * @type {number}
     * @memberof PaginatedFeatureList
     */
    count: number | null;
    /**
     *
     * @type {string}
     * @memberof PaginatedFeatureList
     */
    next: string | null;
    /**
     *
     * @type {string}
     * @memberof PaginatedFeatureList
     */
    previous: string | null;
    /**
     *
     * @type {Array<Feature>}
     * @memberof PaginatedFeatureList
     */
    results: Array<Feature>;
}
/**
 * Check if a given object implements the PaginatedFeatureList interface.
 */
export declare function instanceOfPaginatedFeatureList(value: object): value is PaginatedFeatureList;
export declare function PaginatedFeatureListFromJSON(json: any): PaginatedFeatureList;
export declare function PaginatedFeatureListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedFeatureList;
export declare function PaginatedFeatureListToJSON(json: any): PaginatedFeatureList;
export declare function PaginatedFeatureListToJSONTyped(value?: PaginatedFeatureList | null, ignoreDiscriminator?: boolean): any;
