import { AttachmentService } from "./attachment.service";
import { Response } from "express";
export declare class AttachmentController {
    private readonly attachmentService;
    constructor(attachmentService: AttachmentService);
    deleteAttachment(attachmentId: string, req: any, user: any, res: Response): Promise<Response<any, Record<string, any>>>;
}
