/**
 * 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 { DeleteCommentAction } from './DeleteCommentAction';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface DeleteCommentResult
 */
export interface DeleteCommentResult {
    /**
     *
     * @type {DeleteCommentAction}
     * @memberof DeleteCommentResult
     */
    action: DeleteCommentAction;
    /**
     *
     * @type {APIStatus}
     * @memberof DeleteCommentResult
     */
    status: APIStatus;
}
/**
 * Check if a given object implements the DeleteCommentResult interface.
 */
export declare function instanceOfDeleteCommentResult(value: object): value is DeleteCommentResult;
export declare function DeleteCommentResultFromJSON(json: any): DeleteCommentResult;
export declare function DeleteCommentResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteCommentResult;
export declare function DeleteCommentResultToJSON(json: any): DeleteCommentResult;
export declare function DeleteCommentResultToJSONTyped(value?: DeleteCommentResult | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=DeleteCommentResult.d.ts.map