/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.0.0
 *
 *
 * 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 { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetNotificationCountResponse
 */
export interface GetNotificationCountResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof GetNotificationCountResponse
     */
    status: APIStatus;
    /**
     *
     * @type {number}
     * @memberof GetNotificationCountResponse
     */
    count: number;
}
/**
 * Check if a given object implements the GetNotificationCountResponse interface.
 */
export declare function instanceOfGetNotificationCountResponse(value: object): value is GetNotificationCountResponse;
export declare function GetNotificationCountResponseFromJSON(json: any): GetNotificationCountResponse;
export declare function GetNotificationCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetNotificationCountResponse;
export declare function GetNotificationCountResponseToJSON(json: any): GetNotificationCountResponse;
export declare function GetNotificationCountResponseToJSONTyped(value?: GetNotificationCountResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetNotificationCountResponse.d.ts.map