import { WebhookService } from './webhook.service';
interface IWebhook {
    id: string;
}
export declare class WebhookController {
    private readonly webhookService;
    constructor(webhookService: WebhookService);
    checkPayment(params: IWebhook): Promise<any>;
}
export {};
