/**
 * 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 { AlertResponse } from './AlertResponse';
/**
 *
 * @export
 * @interface PaginatedResponseAlertResponse
 */
export interface PaginatedResponseAlertResponse {
    /**
     *
     * @type {Array<AlertResponse>}
     * @memberof PaginatedResponseAlertResponse
     */
    items: Array<AlertResponse>;
    /**
     *
     * @type {number}
     * @memberof PaginatedResponseAlertResponse
     */
    count: number;
    /**
     *
     * @type {number}
     * @memberof PaginatedResponseAlertResponse
     */
    nextPage: number | null;
    /**
     *
     * @type {number}
     * @memberof PaginatedResponseAlertResponse
     */
    previousPage: number | null;
}
/**
 * Check if a given object implements the PaginatedResponseAlertResponse interface.
 */
export declare function instanceOfPaginatedResponseAlertResponse(value: object): value is PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseFromJSON(json: any): PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseToJSON(json: any): PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseToJSONTyped(value?: PaginatedResponseAlertResponse | null, ignoreDiscriminator?: boolean): any;
