/**
 * 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.
 */
/**
 *
 * @export
 * @interface CountResponse
 */
export interface CountResponse {
    /**
     *
     * @type {number}
     * @memberof CountResponse
     */
    count: number;
}
/**
 * Check if a given object implements the CountResponse interface.
 */
export declare function instanceOfCountResponse(value: object): value is CountResponse;
export declare function CountResponseFromJSON(json: any): CountResponse;
export declare function CountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CountResponse;
export declare function CountResponseToJSON(json: any): CountResponse;
export declare function CountResponseToJSONTyped(value?: CountResponse | null, ignoreDiscriminator?: boolean): any;
