import { BaseController } from './base.controller';
import { WebhookEntity } from 'src/entities/webhook.entity';
import { WebhookService } from 'src/modules/product/webhook.service';
import { WebhookQueryDTO } from 'src/dtos/webhook.dto';
export declare class WebhookController extends BaseController<WebhookEntity, WebhookQueryDTO> {
    protected service: WebhookService;
    constructor(service: WebhookService);
    testReceiver(body: any): {
        status: string;
        message: string;
    };
    testReceiver2(body: any): {
        status: string;
        message: string;
    };
    search(query: WebhookQueryDTO): Promise<import("@serene-dev/la-nest-library").ISearchResponse<WebhookEntity>>;
}
