import { CreatePhishingResponseDto } from './dto/create-phishing-response.dto';
import { UpdatePhishingResponseDto } from './dto/update-phishing-response.dto';
import { PhishingResponseService } from './phishing-response.service';
export declare class PhishingResponseController {
    private readonly phishingResponseService;
    constructor(phishingResponseService: PhishingResponseService);
    create(createPhishingResponseDto: CreatePhishingResponseDto): Promise<import("./entities/phishing-response.entity").PhishingResponse>;
    findAll(): string;
    findOne(id: string): string;
    update(id: string, updatePhishingResponseDto: UpdatePhishingResponseDto): string;
    remove(id: string): string;
}
