/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * Contact: contact@emergentmethods.ai
 *
 * 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 { ReadDomainResponse } from './ReadDomainResponse';
/**
 *
 * @export
 * @interface PaginatedResponseReadDomainResponse
 */
export interface PaginatedResponseReadDomainResponse {
    /**
     *
     * @type {Array<ReadDomainResponse>}
     * @memberof PaginatedResponseReadDomainResponse
     */
    items: Array<ReadDomainResponse>;
    /**
     *
     * @type {number}
     * @memberof PaginatedResponseReadDomainResponse
     */
    count: number;
    /**
     *
     * @type {number}
     * @memberof PaginatedResponseReadDomainResponse
     */
    nextPage: number | null;
    /**
     *
     * @type {number}
     * @memberof PaginatedResponseReadDomainResponse
     */
    previousPage: number | null;
}
/**
 * Check if a given object implements the PaginatedResponseReadDomainResponse interface.
 */
export declare function instanceOfPaginatedResponseReadDomainResponse(value: object): value is PaginatedResponseReadDomainResponse;
export declare function PaginatedResponseReadDomainResponseFromJSON(json: any): PaginatedResponseReadDomainResponse;
export declare function PaginatedResponseReadDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponseReadDomainResponse;
export declare function PaginatedResponseReadDomainResponseToJSON(json: any): PaginatedResponseReadDomainResponse;
export declare function PaginatedResponseReadDomainResponseToJSONTyped(value?: PaginatedResponseReadDomainResponse | null, ignoreDiscriminator?: boolean): any;
