/**
 * 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 UserNotificationWriteResponse
 */
export interface UserNotificationWriteResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof UserNotificationWriteResponse
     */
    status: APIStatus;
    /**
     *
     * @type {number}
     * @memberof UserNotificationWriteResponse
     */
    matchedCount: number;
    /**
     *
     * @type {number}
     * @memberof UserNotificationWriteResponse
     */
    modifiedCount: number;
}
/**
 * Check if a given object implements the UserNotificationWriteResponse interface.
 */
export declare function instanceOfUserNotificationWriteResponse(value: object): value is UserNotificationWriteResponse;
export declare function UserNotificationWriteResponseFromJSON(json: any): UserNotificationWriteResponse;
export declare function UserNotificationWriteResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserNotificationWriteResponse;
export declare function UserNotificationWriteResponseToJSON(json: any): UserNotificationWriteResponse;
export declare function UserNotificationWriteResponseToJSONTyped(value?: UserNotificationWriteResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UserNotificationWriteResponse.d.ts.map